Skip to content

Commit

Permalink
Merge pull request #278 from nf-core/confirm_pass_fix
Browse files Browse the repository at this point in the history
confirm-pass will pass if no tests are triggered
  • Loading branch information
drpatelh authored Feb 21, 2024
2 parents 767c4ec + f4e3a1f commit 51f60c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
if: always()
steps:
- name: All tests ok
if: ${{ success() || !contains(needs.*.result, 'failure') }}
if: ${{ !contains(needs.*.result, 'failure') }}
run: exit 0
- name: One or more tests failed
if: ${{ contains(needs.*.result, 'failure') }}
Expand Down

0 comments on commit 51f60c5

Please sign in to comment.