mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-10 21:00:28 -07:00
tests: fix integration tests not running on push
The integration test filter syntax was restrictive and disabled running them on push.
This commit is contained in:
parent
eab8b1fb7b
commit
4c90fac19f
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.pull_request.head.repo.full_name == github.repository
|
||||
if: github.event.push != null || github.event.pull_request.head.repo.full_name == github.repository
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
|
|
Loading…
Add table
Reference in a new issue