From cc966317d2e74f27a6b843023d7881cadd499147 Mon Sep 17 00:00:00 2001 From: Matthew Mathias Date: Tue, 5 Mar 2024 14:28:32 -0800 Subject: [PATCH] Fix integration test workflow job's if check --- .github/workflows/integration_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index dd86ee1a..4ed7c580 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -50,7 +50,7 @@ jobs: runs-on: macOS-12 needs: check-pr-body-for-key # Don't run if triggered by a PR from a fork since our Secrets won't be provided to the runner. - if: ${{ needs.check-pr-body-for-key.outputs.RUN_INTEGRATION == 'yes' }} && "!github.event.pull_request.head.repo.fork" + if: ${{ needs.check-pr-body-for-key.outputs.RUN_INTEGRATION == 'yes' && !github.event.pull_request.head.repo.fork }} defaults: run: working-directory: Samples/Swift/DaysUntilBirthday