diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-05-31 00:43:45 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 00:43:45 +0530 |
commit | 62de9a79a8f4ad64e4244d974dad3eb9449ff9d6 (patch) | |
tree | 03adb415dfe91527090ed6b7c371226467239cde | |
parent | fac351f2c4fa959ef6b745b4572264e3e8ce6035 (diff) | |
parent | 950f3b5188ba2b87c71b06e282c1037e08066c26 (diff) | |
download | vyos-workflow-test-temp-62de9a79a8f4ad64e4244d974dad3eb9449ff9d6.tar.gz vyos-workflow-test-temp-62de9a79a8f4ad64e4244d974dad3eb9449ff9d6.zip |
Merge pull request #11 from vyos/T6415-secret-check
T6415: repo sync check
-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 0000000..a2bf54f --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -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 }} |