From a31ac42740ebbddfb30e6def8ddb995fb535c531 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Thu, 19 Sep 2024 17:18:44 -0400 Subject: [PATCH] Fix a logic bug --- .github/workflows/pr_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_checks.yml b/.github/workflows/pr_checks.yml index 3ee8cff..8f29a75 100644 --- a/.github/workflows/pr_checks.yml +++ b/.github/workflows/pr_checks.yml @@ -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