mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
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
This commit is contained in:
parent
4c90fac19f
commit
f87e7f47b4
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue