From a960702636e1235846ec18bf50178a7c41f1d602 Mon Sep 17 00:00:00 2001 From: aidenvaines-bjss Date: Mon, 9 Sep 2024 14:15:12 +0100 Subject: [PATCH] CCM-6405 fix script repo checkout --- .github/workflows/scheduled-repository-template-sync.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/scheduled-repository-template-sync.yaml b/.github/workflows/scheduled-repository-template-sync.yaml index 5adc80a..920a6ad 100644 --- a/.github/workflows/scheduled-repository-template-sync.yaml +++ b/.github/workflows/scheduled-repository-template-sync.yaml @@ -16,16 +16,18 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check out external repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: - repository: nhsdigital/nhs-notify-repository-template + repository: NHSDigital/nhs-notify-repository-template path: nhs-notify-repository-template + token: ${{ github.token }} - name: Run syncronisation script run: | + ls -la nhs-notify-repository-template/ ./scripts/githooks/sync-template-repo.sh - name: Create Pull Request