Skip to content

Commit dfc0b0c

Browse files
authored
fix: repository determination without explicit checkout (#18)
* fix: repository determination without explicit checkout * fix: dynamic determinal of commit SHA
1 parent 2c860e4 commit dfc0b0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ runs:
2323
# Get PR number using GitHub API for different event triggers.
2424
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
2525
# List PRs associated with the commit, then get the PR number from the head ref or the latest PR.
26-
associated_prs=$(gh api /repos/{owner}/{repo}/commits/${GITHUB_SHA}/pulls --header "$GH_API" --method GET --field per_page=100)
26+
associated_prs=$(gh api /repos/${{ github.repository }}/commits/${{ github.event.pull_request.head.sha || github.sha }}/pulls --header "$GH_API" --method GET --field per_page=100)
2727
number=$(echo "$associated_prs" | jq --raw-output '(.[] | select(.head.ref == env.GITHUB_REF_NAME) | .number) // .[0].number // 0')
2828
elif [[ "$GITHUB_EVENT_NAME" == "merge_group" ]]; then
2929
# Get the PR number by parsing the ref name.
3030
number=$(echo "${GITHUB_REF_NAME}" | sed -n 's/.*pr-\([0-9]*\)-.*/\1/p')
3131
else
3232
# Get the PR number from branch name, otherwise fallback on 0 if the PR number is not found.
33-
number=${{ github.event.number || github.event.issue.number }} || $(gh api /repos/{owner}/{repo}/pulls --header "$GH_API" --method GET --field per_page=100 --field head="${branch}" | jq '.[0].number // 0')
33+
number=${{ github.event.number || github.event.issue.number }} || $(gh api /repos/${{ github.repository }}/pulls --header "$GH_API" --method GET --field per_page=100 --field head="${branch}" | jq '.[0].number // 0')
3434
fi
3535
3636
echo "branch=$branch" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)