File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 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/${{ github.repository }}/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.
You can’t perform that action at this time.
0 commit comments