Skip to content

Commit c8894d6

Browse files
[CONFIG] regression fix
Changes in file .github/workflows/CI-BUILD.yml: * possible regression fix
1 parent 57ff07f commit c8894d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/CI-BUILD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ jobs:
325325
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
326326
printf "%s\n" "build_pr_number=${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
327327
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')
328+
PRS_LIST=$(gh api "/repos/reactive-firewall-org/multicast/pulls?state=open&head=reactive-firewall-org:${{ github.ref_name }}" --jq '.[].number')
329329
# Determine the highest pull request number or set to null
330330
if [[ -n "${PRS_LIST}" ]]; then
331331
highest_pr_number=$(printf "%s\n" "$PRS_LIST" | sort -n | tail -n 1)

0 commit comments

Comments
 (0)