Brendon Smith 2024-05-30 21:34:34 -04:00
parent 90ff14245c
commit 61e875d7fe
No known key found for this signature in database
1 changed files with 4 additions and 2 deletions

View File

@ -111,14 +111,16 @@ runs:
# Set repo and ref from which to run Docker container action # Set repo and ref from which to run Docker container action
# to handle cases in which `github.action_` context is not set # to handle cases in which `github.action_` context is not set
# https://github.com/actions/runner/issues/2473 # https://github.com/actions/runner/issues/2473
REF=${{ env.ACTION_REF || github.ref_name }} REF=${{ env.ACTION_REF || env.PR_REF || github.ref_name }}
REPO=${{ env.ACTION_REPO || github.repository }} REPO=${{ env.ACTION_REPO || env.PR_REPO || github.repository }}
echo "ref=$REF" >>"$GITHUB_OUTPUT" echo "ref=$REF" >>"$GITHUB_OUTPUT"
echo "repo=$REPO" >>"$GITHUB_OUTPUT" echo "repo=$REPO" >>"$GITHUB_OUTPUT"
shell: bash shell: bash
env: env:
ACTION_REF: ${{ github.action_ref }} ACTION_REF: ${{ github.action_ref }}
ACTION_REPO: ${{ github.action_repository }} ACTION_REPO: ${{ github.action_repository }}
PR_REF: ${{ github.event.pull_request.head.ref }}
PR_REPO: ${{ github.event.pull_request.head.repo.full_name }}
- name: Check out action repo - name: Check out action repo
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with: