From ce20393205bd93dc65f371543e4ebe272c94e4ad Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Sun, 10 May 2026 01:26:33 +0530 Subject: T8835: added pr mirror workflow --- .github/workflows /cla-check.yml | 18 ---------------- .github/workflows/cla-check.yml | 18 ++++++++++++++++ .github/workflows/pr-mirror-repo-sync.yml | 35 +++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+), 18 deletions(-) delete mode 100644 .github/workflows /cla-check.yml create mode 100644 .github/workflows/cla-check.yml create mode 100644 .github/workflows/pr-mirror-repo-sync.yml diff --git a/.github/workflows /cla-check.yml b/.github/workflows /cla-check.yml deleted file mode 100644 index 625ff78..0000000 --- a/.github/workflows /cla-check.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: "CLA Check" - -permissions: - actions: write - contents: read - pull-requests: write - statuses: write - -on: - pull_request_target: - types: [opened, synchronize, closed] - issue_comment: - types: [created] - -jobs: - call-cla-assistant: - uses: vyos/vyos-cla-signatures/.github/workflows/cla-reusable.yml@current - secrets: inherit \ No newline at end of file diff --git a/.github/workflows/cla-check.yml b/.github/workflows/cla-check.yml new file mode 100644 index 0000000..625ff78 --- /dev/null +++ b/.github/workflows/cla-check.yml @@ -0,0 +1,18 @@ +name: "CLA Check" + +permissions: + actions: write + contents: read + pull-requests: write + statuses: write + +on: + pull_request_target: + types: [opened, synchronize, closed] + issue_comment: + types: [created] + +jobs: + call-cla-assistant: + uses: vyos/vyos-cla-signatures/.github/workflows/cla-reusable.yml@current + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/pr-mirror-repo-sync.yml b/.github/workflows/pr-mirror-repo-sync.yml new file mode 100644 index 0000000..dca33b4 --- /dev/null +++ b/.github/workflows/pr-mirror-repo-sync.yml @@ -0,0 +1,35 @@ +name: PR Mirror and Repo Sync + +on: + pull_request_target: + types: [closed] + branches: [current] + workflow_dispatch: + inputs: + sync_branch: + description: 'Branch to mirror' + required: true + default: 'current' + type: choice + options: + - current + +permissions: + pull-requests: write + contents: write + issues: write + +jobs: + call-pr-mirror-repo-sync: + if: | + github.repository_owner == 'vyos' && + ( + github.event_name == 'workflow_dispatch' || + (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true) + ) + uses: vyos/.github/.github/workflows/pr-mirror-repo-sync.yml@current + with: + sync_branch: ${{ github.event.inputs.sync_branch || 'current' }} + secrets: + PAT: ${{ secrets.PAT }} + REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} -- cgit v1.2.3