From 62d798e04f1be15cfefaac76f4d3182938424594 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Sat, 9 May 2026 20:59:42 +0530 Subject: T8835: added pr mirror workflow --- .github/workflows /pr-mirror-repo-sync.yml | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows /pr-mirror-repo-sync.yml diff --git a/.github/workflows /pr-mirror-repo-sync.yml b/.github/workflows /pr-mirror-repo-sync.yml new file mode 100644 index 0000000..be1a045 --- /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: [master] + workflow_dispatch: + inputs: + sync_branch: + description: 'Branch to mirror' + required: true + default: 'master' + type: choice + options: + - master + +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 || 'master' }} + secrets: + PAT: ${{ secrets.PAT }} + REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} -- cgit v1.2.3 From c78a2f0ad95a43177f15654edf3082dea43058f8 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Sat, 9 May 2026 22:30:32 +0530 Subject: T8835: removed extra space in workflows folder --- .github/workflows /cla-check.yml | 18 --------------- .github/workflows /pr-mirror-repo-sync.yml | 35 ----------------------------- .github/workflows/cla-check.yml | 18 +++++++++++++++ .github/workflows/pr-mirror-repo-sync.yml | 35 +++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 53 deletions(-) delete mode 100644 .github/workflows /cla-check.yml delete mode 100644 .github/workflows /pr-mirror-repo-sync.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 /pr-mirror-repo-sync.yml b/.github/workflows /pr-mirror-repo-sync.yml deleted file mode 100644 index be1a045..0000000 --- a/.github/workflows /pr-mirror-repo-sync.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: PR Mirror and Repo Sync - -on: - pull_request_target: - types: [closed] - branches: [master] - workflow_dispatch: - inputs: - sync_branch: - description: 'Branch to mirror' - required: true - default: 'master' - type: choice - options: - - master - -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 || 'master' }} - secrets: - PAT: ${{ secrets.PAT }} - REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} 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..be1a045 --- /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: [master] + workflow_dispatch: + inputs: + sync_branch: + description: 'Branch to mirror' + required: true + default: 'master' + type: choice + options: + - master + +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 || 'master' }} + secrets: + PAT: ${{ secrets.PAT }} + REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} -- cgit v1.2.3