diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-05-31 00:20:22 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 00:20:22 +0530 |
commit | 57403a4ade3407c3faf5105ef8e643d33f8d4214 (patch) | |
tree | 9f931241c024390d99679af7eeccc85cb364ee60 | |
parent | b9b4b73f9a90a7f8ea7981191518e1ce1564b1c3 (diff) | |
download | vyos-workflow-test-temp-57403a4ade3407c3faf5105ef8e643d33f8d4214.tar.gz vyos-workflow-test-temp-57403a4ade3407c3faf5105ef8e643d33f8d4214.zip |
T6415: repo sync check
-rw-r--r-- | .github/workflows/repo-sync | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/repo-sync b/.github/workflows/repo-sync new file mode 100644 index 0000000..a2bf54f --- /dev/null +++ b/.github/workflows/repo-sync @@ -0,0 +1,17 @@ +name: Repo-sync + +on: + pull_request: + types: + - closed + branches: + - current + workflow_dispatch: + +jobs: + trigger-sync: + uses: vyos/.github/.github/workflows/trigger-repo-sync.yml@feature/T6349-reusable-workflows + secrets: + REMOTE_REPO: ${{ secrets.REMOTE_REPO }} + REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} + PAT: ${{ secrets.PAT }} |