Skip to content

Commit 8a5b3a4

Browse files
committed
Fix required condition for skipped jobs
1 parent 0303112 commit 8a5b3a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ jobs:
164164
env:
165165
NEEDS: ${{ toJson(needs) }}
166166
run: |
167-
! echo $NEEDS | jq -e 'to_entries[] | { job: .key, result: .value.result } | select(.result != "success")'
167+
! echo $NEEDS | jq -e 'to_entries[] | { job: .key, result: .value.result } | select(.result == "success" or .result == "skipped" | not)'

0 commit comments

Comments
 (0)