diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-06-01 02:00:26 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-01 02:00:26 +0300 |
| commit | d6bc37f2594dba6c5432f351b7282494514f5ffa (patch) | |
| tree | f4666d47a32242263bb9c18e00cb990381a1a961 | |
| parent | f6b77b1d9e6f8cf8d9071c7f60875b4408c3b129 (diff) | |
| download | live-boot-d6bc37f2594dba6c5432f351b7282494514f5ffa.tar.gz live-boot-d6bc37f2594dba6c5432f351b7282494514f5ffa.zip | |
T8943: migrate pr-mirror wrapper to canonical stub (#21)
Mirror Pipeline Rollout 2 Task 6. Uniform canonical wrapper:
trigger branches [rolling, production], permissions: contents: read,
drop redundant wrapper-level MIRROR_ENABLED guard (now central).
🤖 Generated by [robots](https://vyos.io)
| -rw-r--r-- | .github/workflows/pr-mirror-repo-sync.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/pr-mirror-repo-sync.yml b/.github/workflows/pr-mirror-repo-sync.yml index 5320e01..0f16633 100644 --- a/.github/workflows/pr-mirror-repo-sync.yml +++ b/.github/workflows/pr-mirror-repo-sync.yml @@ -6,7 +6,7 @@ name: PR Mirror and Repo Sync on: pull_request_target: types: [closed] - branches: [rolling] + branches: [rolling, production] workflow_dispatch: inputs: sync_branch: @@ -14,16 +14,13 @@ on: type: string permissions: - contents: write - pull-requests: write - issues: write + contents: read jobs: call: if: | github.repository_owner == 'vyos' && (github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch') - && vars.MIRROR_ENABLED != 'false' uses: vyos/.github/.github/workflows/pr-mirror-repo-sync.yml@production with: sync_branch: ${{ inputs.sync_branch || github.event.pull_request.base.ref }} |
