diff options
author | kumvijaya <kumvijaya@gmail.com> | 2024-06-14 17:48:34 +0530 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-06-15 08:08:33 +0200 |
commit | 36fa614b02f8cdca7a4ffd869a231ca6eef64273 (patch) | |
tree | cba1eebcb40c7a6a8c5d9cdd4a11fa6ce88054a7 /.github/workflows/repo-sync.yml | |
parent | 95b62fbc35b3da0cb7e7fea0b02b3d16fa0368b3 (diff) | |
download | vyos-1x-36fa614b02f8cdca7a4ffd869a231ca6eef64273.tar.gz vyos-1x-36fa614b02f8cdca7a4ffd869a231ca6eef64273.zip |
T6487: updated central workflows to use current branch
(cherry picked from commit 6c4bd6cdaa6008f05ed610742a4cc7e79988b737)
Diffstat (limited to '.github/workflows/repo-sync.yml')
-rw-r--r-- | .github/workflows/repo-sync.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml new file mode 100644 index 000000000..b475a84ec --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -0,0 +1,17 @@ +name: Repo-sync + +on: + pull_request_target: + types: + - closed + branches: + - sagitta + workflow_dispatch: + +jobs: + trigger-sync: + uses: vyos/.github/.github/workflows/trigger-repo-sync.yml@sagitta + secrets: + REMOTE_REPO: ${{ secrets.REMOTE_REPO }} + REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} + PAT: ${{ secrets.PAT }} |