Skip to content

Commit

Permalink
Update create_release_pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
vinmassaro authored Feb 5, 2024
1 parent ea48671 commit 2c0de42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/github/create_release_pull_request
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ for sha in $commit_shas; do
"https://api.github.com/repos/$REPO/commits/$sha/pulls" \
| jq -r 'if type == "object" and has("message") and length > 0 then null else .[].html_url // empty end')

if [[ -n "$single_pr_url" && "$single_pr_url" != "null" ]]; then
if [[ -n "$single_pr_url" && "$single_pr_url" != "null" && "$single_pr_url" != "$RELEASE_PR_URL" ]]; then
pull_requests+=("$single_pr_url")
elif [[ "$single_pr_url" == "null" ]]; then
:
Expand Down

0 comments on commit 2c0de42

Please sign in to comment.