diff options
author | Christian Breunig <christian@breunig.cc> | 2025-01-22 12:41:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-22 12:41:10 +0100 |
commit | 62680c883d440285fe399bcc9fa7591648542dae (patch) | |
tree | 2044f2136cea8628193bf6422dcc247af4665a95 | |
parent | 80881299d1e6dd4567b860825493b37a8f234097 (diff) | |
parent | 59473bd60787db3a9aef14d17fd0ca81db6b6e76 (diff) | |
download | vyos-1x-62680c883d440285fe399bcc9fa7591648542dae.tar.gz vyos-1x-62680c883d440285fe399bcc9fa7591648542dae.zip |
Merge pull request #4312 from vyos/T7065-pr-mirror-trigger-restrict
T7065: pr mirror to trigger only when the pullrequest is merged
-rw-r--r-- | .github/workflows/trigger-pr-mirror-repo-sync.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/trigger-pr-mirror-repo-sync.yml b/.github/workflows/trigger-pr-mirror-repo-sync.yml index 7547b8e1f..f74895987 100644 --- a/.github/workflows/trigger-pr-mirror-repo-sync.yml +++ b/.github/workflows/trigger-pr-mirror-repo-sync.yml @@ -8,6 +8,6 @@ on: jobs: call-trigger-mirror-pr-repo-sync: - if: github.repository_owner == 'vyos' + if: github.repository_owner == 'vyos' && github.event.pull_request.merged == true uses: vyos/.github/.github/workflows/trigger-pr-mirror-repo-sync.yml@current secrets: inherit |