summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/repo-sync.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml
index b768ec8..311bae9 100644
--- a/.github/workflows/repo-sync.yml
+++ b/.github/workflows/repo-sync.yml
@@ -10,8 +10,15 @@ on:
jobs:
trigger-sync:
- uses: vyos/.github/.github/workflows/trigger-repo-sync.yml@feature/T6349-reusable-workflows
- with:
+ runs-on: ubuntu-latest
+ env:
REMOTE_REPO: ${{ secrets.REMOTE_REPO }}
REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }}
PAT: ${{ secrets.PAT }}
+ steps:
+ - name: Trigger reusable workflow
+ uses: vyos/.github/.github/workflows/trigger-repo-sync.yml@feature/T6349-reusable-workflows
+ with:
+ REMOTE_REPO: ${{ env.REMOTE_REPO }}
+ REMOTE_OWNER: ${{ env.REMOTE_OWNER }}
+ PAT: ${{ env.PAT }}