Fix a logic bug

This commit is contained in:
Dilum Aluthge
2024-09-19 17:18:44 -04:00
committed by GitHub
parent a3af7bd0ec
commit a31ac42740

View File

@@ -31,7 +31,7 @@ jobs:
echo make-targets: ${{ needs.make-targets.result }}
echo stalecheck-npm-install: ${{ needs.stalecheck-npm-install.result }}
- run: exit 1
if: ${{ !contains(needs.*.result, 'failure') || !contains(needs.*.result, 'cancelled') || !contains(needs.*.result, 'skipped') }}
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }}
checked-in-files:
timeout-minutes: 30
runs-on: ubuntu-latest