diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-07-30 00:40:19 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 00:40:19 +0530 |
commit | ff0b3b670848707e1942a60f0b962307e7ac29fb (patch) | |
tree | 27f0ce945386841e964e9c07be1798fbbdd83d8e /.github/workflows/trigger-pr.yml | |
parent | f01b1cebad8d34aedc981f3cfed23465f6b99947 (diff) | |
download | vyos-1x-ff0b3b670848707e1942a60f0b962307e7ac29fb.tar.gz vyos-1x-ff0b3b670848707e1942a60f0b962307e7ac29fb.zip |
T6572: trigger remote bot pr only from circinus
Diffstat (limited to '.github/workflows/trigger-pr.yml')
-rw-r--r-- | .github/workflows/trigger-pr.yml | 19 |
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..6461d179f --- /dev/null +++ b/.github/workflows/trigger-pr.yml @@ -0,0 +1,19 @@ +name: Trigger PR
+
+on:
+ pull_request_target:
+ types:
+ - closed
+ branches:
+ - circinus
+
+jobs:
+ trigger-PR:
+ uses: vyos/.github/.github/workflows/trigger-pr.yml@current
+ with:
+ source_branch: 'circinus'
+ target_branch: 'circinus'
+ secrets:
+ REMOTE_REPO: ${{ secrets.REMOTE_REPO }}
+ REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }}
+ PAT: ${{ secrets.PAT }}
|