From c93cdf8d743da528acaffa03e22fb5dc6faab227 Mon Sep 17 00:00:00 2001 From: Axel Uhl Date: Sat, 12 Sep 2026 19:25:38 +0200 Subject: [PATCH] show gh pr command --- configuration/merge-upstream-to-downstream.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configuration/merge-upstream-to-downstream.sh b/configuration/merge-upstream-to-downstream.sh index a310ad3845c..be32e576968 100755 --- a/configuration/merge-upstream-to-downstream.sh +++ b/configuration/merge-upstream-to-downstream.sh @@ -293,6 +293,12 @@ log "Opening PR $HEAD_SPEC -> $BASE_REPO:$DOWNSTREAM_BRANCH (authored by the for # NOTE: `gh pr create --head` takes owner:branch (cross-fork form), but # `gh pr list --head` (the fallback below) takes the BRANCH NAME ONLY — hence we # filter the list by head-fork owner separately, matching the early check above. +echo "gh pr create + --repo \"$BASE_REPO\" + --base \"$DOWNSTREAM_BRANCH\" + --head \"$HEAD_SPEC\" + --title \"$PR_TITLE\" + --body-file \"$PR_BODY_FILE\"" if ! GH_TOKEN="$FORK_PAT" GH_HOST="$FORK_HOST" \ gh pr create \ --repo "$BASE_REPO" \