Skip to content

Commit 30c6f72

Browse files
committed
chore: add required status checks
1 parent 0a48a96 commit 30c6f72

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/check-actions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ jobs:
8686
env:
8787
RESULTS: ${{ toJSON(needs) }}
8888
run: |
89-
echo "$RESULTS" | jq -e 'all(.result == "success")' || exit 1
89+
echo "$RESULTS" | jq --exit-status 'all(.result == "success")' || exit 1

.github/workflows/codeql-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ jobs:
8989
env:
9090
RESULTS: ${{ toJSON(needs) }}
9191
run: |
92-
echo "$RESULTS" | jq -e 'all(.result == "success")' || exit 1
92+
echo "$RESULTS" | jq --exit-status 'all(.result == "success")' || exit 1

0 commit comments

Comments
 (0)