From c0086b558d8ec6f3f619cca3b0f0fa674f0d4f9a Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Sat, 6 Jun 2026 01:16:17 +0300 Subject: ci: T8943: re-add PR-mirror wrapper stub (rolling) (#40) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Re-onboards vyatta-bash to the PR-mirror pipeline, reversing the 2026-05-30 exclusion (VD-4257 c#46015). The wrapper was removed in Rollout 2 Task 7 (#36); this restores the byte-identical canonical stub (sha256 45634ff9) so merges to rolling mirror to VyOS-Networks/vyatta-bash. Paired with the consumers.yaml allow-list entry on VyOS-Networks/.github (rolling-only). Mirroring no-ops until both land. 🤖 Generated by [robots](https://vyos.io) --- .github/workflows/pr-mirror-repo-sync.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/pr-mirror-repo-sync.yml (limited to '.github/workflows') diff --git a/.github/workflows/pr-mirror-repo-sync.yml b/.github/workflows/pr-mirror-repo-sync.yml new file mode 100644 index 0000000..0f16633 --- /dev/null +++ b/.github/workflows/pr-mirror-repo-sync.yml @@ -0,0 +1,27 @@ +# .github/workflows/pr-mirror-repo-sync.yml +# DO NOT EDIT — managed by mirror-pipeline rollout. +# To opt out: set vars.MIRROR_ENABLED=false in this repo's Actions variables. +name: PR Mirror and Repo Sync + +on: + pull_request_target: + types: [closed] + branches: [rolling, production] + workflow_dispatch: + inputs: + sync_branch: + required: true + type: string + +permissions: + contents: read + +jobs: + call: + if: | + github.repository_owner == 'vyos' + && (github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch') + uses: vyos/.github/.github/workflows/pr-mirror-repo-sync.yml@production + with: + sync_branch: ${{ inputs.sync_branch || github.event.pull_request.base.ref }} + secrets: inherit -- cgit v1.2.3