diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/package-smoketest.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/package-smoketest.yml b/.github/workflows/package-smoketest.yml index 46ade59e3..e558a4fa7 100644 --- a/.github/workflows/package-smoketest.yml +++ b/.github/workflows/package-smoketest.yml @@ -140,6 +140,15 @@ jobs: token: ${{ needs.set_config.outputs.use_pat == 'true' && secrets.PAT || secrets.GITHUB_TOKEN }} ref: ${{ needs.set_config.outputs.vyos_build_ref }} + - name: Clone vyos-1x source code into the build directory + uses: actions/checkout@v6 + with: + path: build/vyos-1x + repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} + token: ${{ needs.set_config.outputs.use_pat == 'true' && secrets.PAT || secrets.GITHUB_TOKEN }} + ref: ${{ needs.set_config.outputs.vyos_build_ref }} + persist-credentials: false + - name: Clone vyos-1x source code uses: actions/checkout@v6 with: |
