summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYevhen Bondarenko <evgeniy.bondarenko@sentrium.io>2026-05-09 20:28:29 +0200
committerGitHub <noreply@github.com>2026-05-09 20:28:29 +0200
commit3fc90af7462a3fb3f4f4d7b154d7906fd3f55881 (patch)
tree31ada731ae3939a386e48e3f929ff9ed023852f7
parentbfee76998a4585af4e09fda4caac0a2564e5ae43 (diff)
parent81a1bee94cfe49c59f40464873f38685386664c7 (diff)
downloadlibpam-tacplus-3fc90af7462a3fb3f4f4d7b154d7906fd3f55881.tar.gz
libpam-tacplus-3fc90af7462a3fb3f4f4d7b154d7906fd3f55881.zip
Merge pull request #11 from kumvijaya/master
T8835: added pr mirror workflow, removed extra space
-rw-r--r--.github/workflows/cla-check.yml (renamed from .github/workflows /cla-check.yml)0
-rw-r--r--.github/workflows/pr-mirror-repo-sync.yml35
2 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows /cla-check.yml b/.github/workflows/cla-check.yml
index 625ff78..625ff78 100644
--- a/.github/workflows /cla-check.yml
+++ b/.github/workflows/cla-check.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..61301b5
--- /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 }}