summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-07-16 11:07:47 +0200
committerGitHub <noreply@github.com>2024-07-16 11:07:47 +0200
commite9232c7a751ffec34f18e1734cb18ac01da35cb7 (patch)
treec735f241ae7ba984fc5f08fb1df796395180b27c /.github/workflows
parent88878c9cd93485efbe7c5465ceacf2bbc8d121cd (diff)
parent526f061dead95546e9bfc1ef4bf1a903f8a88ef4 (diff)
downloadvyos-1x-e9232c7a751ffec34f18e1734cb18ac01da35cb7.tar.gz
vyos-1x-e9232c7a751ffec34f18e1734cb18ac01da35cb7.zip
Merge pull request #3809 from kumvijaya/current
T6572: added trigger pr caller workflow
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/trigger-pr.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/trigger-pr.yml b/.github/workflows/trigger-pr.yml
new file mode 100644
index 000000000..0e28b460f
--- /dev/null
+++ b/.github/workflows/trigger-pr.yml
@@ -0,0 +1,19 @@
+name: Trigger PR
+
+on:
+ pull_request_target:
+ types:
+ - closed
+ branches:
+ - current
+
+jobs:
+ trigger-PR:
+ uses: vyos/.github/.github/workflows/trigger-pr.yml@current
+ with:
+ source_branch: 'current'
+ target_branch: 'circinus'
+ secrets:
+ REMOTE_REPO: ${{ secrets.REMOTE_REPO }}
+ REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }}
+ PAT: ${{ secrets.PAT }}