We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ff07f commit c8894d6Copy full SHA for c8894d6
.github/workflows/CI-BUILD.yml
@@ -325,7 +325,7 @@ jobs:
325
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
326
printf "%s\n" "build_pr_number=${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
327
else
328
- PRS_LIST=$(gh api --url "${{ github.api_url }}/repos/reactive-firewall-org/multicast/pulls?state=open&head=reactive-firewall-org:${{ github.ref_name }}" --jq '.[].number')
+ PRS_LIST=$(gh api "/repos/reactive-firewall-org/multicast/pulls?state=open&head=reactive-firewall-org:${{ github.ref_name }}" --jq '.[].number')
329
# Determine the highest pull request number or set to null
330
if [[ -n "${PRS_LIST}" ]]; then
331
highest_pr_number=$(printf "%s\n" "$PRS_LIST" | sort -n | tail -n 1)
0 commit comments