From 67adea48feca8db20c4cf3ccc1b79414944ffb33 Mon Sep 17 00:00:00 2001 From: Noah Canadea Date: Wed, 29 Nov 2023 16:30:02 +0100 Subject: [PATCH] fix(action_integration_test): Fix repo name to source repo. (#37) --- .github/workflows/action_integration_test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/action_integration_test.yml b/.github/workflows/action_integration_test.yml index 83c5ea8..e039265 100644 --- a/.github/workflows/action_integration_test.yml +++ b/.github/workflows/action_integration_test.yml @@ -13,11 +13,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Run in report only mode uses: ./ with: report_only: true + repository_name: ${{ github.event.pull_request.head.repo.full_name }} - name: Run in update mode id: update @@ -25,6 +28,7 @@ jobs: with: report_only: false target_branch_name: "feat/infrapatch_test_${{ github.run_number }}" + repository_name: ${{ github.event.pull_request.head.repo.full_name }} - name: Check update result shell: pwsh