mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 19:16:54 +08:00
Fix a logic bug
This commit is contained in:
2
.github/workflows/pr_checks.yml
vendored
2
.github/workflows/pr_checks.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user