mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-20 06:56:53 +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 make-targets: ${{ needs.make-targets.result }}
|
||||||
echo stalecheck-npm-install: ${{ needs.stalecheck-npm-install.result }}
|
echo stalecheck-npm-install: ${{ needs.stalecheck-npm-install.result }}
|
||||||
- run: exit 1
|
- 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:
|
checked-in-files:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
Reference in New Issue
Block a user