diff --git a/.github/workflows/cra.yaml b/.github/workflows/cra.yaml index 44bba66a..a149b388 100644 --- a/.github/workflows/cra.yaml +++ b/.github/workflows/cra.yaml @@ -66,8 +66,8 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - ref: ${{ github.head_ref }} - repository: ${{ github.repository}} + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Set up go environment uses: actions/setup-go@v5 with: @@ -79,10 +79,11 @@ jobs: { echo '## Test Log' echo '```' - make test - echo '```' } >> $GITHUB_STEP_SUMMARY + make test | tee $GITHUB_STEP_SUMMARY + echo '```' >> $GITHUB_STEP_SUMMARY + k3d-integration: # we're using reusable because we can't modify workflows as contributors # it could cause the secret leakeages