From 5f3cb4ff348a52358950686bb3afc8815656a54b Mon Sep 17 00:00:00 2001 From: Paul Thurlow Date: Tue, 24 Mar 2026 14:54:09 -0700 Subject: [PATCH] fix gh pr for release script --- scripts/release.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 5137e9c..03ba222 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -42,12 +42,13 @@ case "$COMMAND" in # step 2: bump versions, commit, push branch echo "" echo "→ Running cargo release (no publish, no tag)..." - cargo release --no-publish --no-tag --allow-branch="$BRANCH" "$VERSION" + cargo release --no-publish --no-tag --allow-branch="$BRANCH" --execute "$VERSION" echo "" echo "→ Opening pull request..." PR_URL=$(gh pr create \ --title "chore: Release hotdata-cli version $VERSION" \ + --body "" \ --base main \ --head "$BRANCH")