Skip to content

Commit 3b00555

Browse files
authoredNov 23, 2023
ci: fix renovate skipping checks (#796)
1 parent 689eea4 commit 3b00555

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@ jobs:
7373
required_check:
7474
runs-on: ubuntu-latest
7575
needs:
76+
- prevent-duplicate-checks
7677
- test_matrix
77-
if: always()
78+
79+
if: ${{ !cancelled() && needs.prevent-duplicate-checks.outputs.should-run == 'true' }}
7880
steps:
7981
- name: All required jobs and matrix versions passed
8082
if: ${{ !(contains(needs.*.result, 'failure')) }}

0 commit comments

Comments
 (0)
Please sign in to comment.