diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-31 01:32:26 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-31 01:32:26 +0300 |
| commit | 4d5b1daa38106dee5bbe5286a0fc1c6d9ceff9c2 (patch) | |
| tree | ef8c32c73d715a81a4c1ebe96aef2c451abc1510 /.github/workflows | |
| parent | 1774609b9fee73e0d58f51bc977c5d723c11f1b1 (diff) | |
| download | hvinfo-4d5b1daa38106dee5bbe5286a0fc1c6d9ceff9c2.tar.gz hvinfo-4d5b1daa38106dee5bbe5286a0fc1c6d9ceff9c2.zip | |
T8943: feat(mirror-rollout-2): adopt uniform wrapper stub (#19)
Per Mirror Pipeline Redesign Rollout 2 fan-out. Mirror behavior on
this consumer stays byte-identical post-merge — inclusion +
kill-switch logic moves into the central workflow + consumers.yaml.
Wrapper is now a thin pass-through.
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to '.github/workflows')
| -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 }} |
