Skip to content

Commit 2810828

Browse files
committed
Fix commit_length variable in quality-assurance.yaml
Signed-off-by: James Bradlee <[email protected]>
1 parent 9befc81 commit 2810828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/quality-assurance.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
COMMITS: ${{ toJson(github.event.commits) }}
2828
run: |
2929
let NCOMMITS=1+$(echo $COMMITS | jq '. | length')
30-
echo "commit_length=NCOMMITS" >> $GITHUB_OUTPUT
30+
echo "commit_length=$NCOMMITS" >> $GITHUB_OUTPUT
3131
- name: Checking out ${{ steps.payload.outputs.commit_length || '1' }} commits
3232
uses: actions/checkout@v4
3333
with:

0 commit comments

Comments
 (0)