diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-07-18 16:55:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-18 16:55:52 +0200 |
commit | c71e2524eda793effc71b21ac6d9feecc47cf660 (patch) | |
tree | 6b8bc5841738db446e07cbf833d2141481c74ed8 /.github | |
parent | Update DAB update automation PR template (#15376) (diff) | |
download | awx-c71e2524eda793effc71b21ac6d9feecc47cf660.tar.xz awx-c71e2524eda793effc71b21ac6d9feecc47cf660.zip |
Disable dab-release GHA on fork unless explicitly triggered (#15382)
Disable dab-release GHA on fork Unless explicitly triggered
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dab-release.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/dab-release.yml b/.github/workflows/dab-release.yml index 1d5ecceaaa..6ebbe05bce 100644 --- a/.github/workflows/dab-release.yml +++ b/.github/workflows/dab-release.yml @@ -9,6 +9,7 @@ permissions: contents: write jobs: dab-pin-newest: + if: (github.repository_owner == 'ansible' && endsWith(github.repository, 'awx')) || github.event_name != 'schedule' runs-on: ubuntu-latest steps: - id: dab-release |