From f87e7f47b4b01cacefd645ee3c2d21418633ab9c Mon Sep 17 00:00:00 2001 From: Yusuke Tsutsumi Date: Sun, 4 Dec 2022 20:12:50 +0000 Subject: [PATCH] tests: fix integration tests 2 the previous fix had invalid syntax (hard to test against the master branch until after push). This syntax is documented as correct: https://github.com/actions/runner/issues/950 --- .github/workflows/ansible-integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ansible-integration-tests.yml b/.github/workflows/ansible-integration-tests.yml index a921653..fbd44e6 100644 --- a/.github/workflows/ansible-integration-tests.yml +++ b/.github/workflows/ansible-integration-tests.yml @@ -11,7 +11,7 @@ jobs: # NOTE: GitHub does not allow secrets to be used # in PRs sent from forks. As such, this configuration is for # PRs that the maintainers would like to send to test. - if: github.event.push != null || github.event.pull_request.head.repo.full_name == github.repository + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest defaults: run: