Skip to content

Commit

Permalink
add extra CI fail check
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementTsang committed Aug 8, 2024
1 parent 038314c commit 11f8265
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 @@ -276,7 +276,7 @@ jobs:
echo "CI workflow completed successfully.";
- name: CI Failed
if: ${{ needs.supported.result == 'failure' && needs.other-check.result == 'failure' }}
if: ${{ needs.supported.result == 'failure' && needs.other-check.result == 'failure' || (needs.supported.result == 'cancelled' && needs.other-check.result == 'cancelled') }}
run: |
echo "CI workflow failed at some point.";
exit 1;

0 comments on commit 11f8265

Please sign in to comment.