File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -300,15 +300,16 @@ jobs:
300300 --body "$PR_BODY"
301301 echo "Updated PR: $(gh pr view $EXISTING_PR --json url --jq .url)"
302302 else
303- echo "Creating new PR"
303+ echo "Creating new draft PR"
304304 gh pr create \
305305 --title "chore(release): agents v${NEW_VERSION}" \
306306 --body "$PR_BODY" \
307307 --base main \
308308 --head "$BRANCH_NAME" \
309- --label "release"
309+ --label "release" \
310+ --draft
310311 PR_URL=$(gh pr list --head "$BRANCH_NAME" --json url --jq '.[0].url')
311- echo "Created PR: $PR_URL"
312+ echo "Created draft PR: $PR_URL"
312313 fi
313314 - name : Summary
314315 if : always()
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ changelog_config = "cliff.toml"
1010git_tag_name = " agents-v{{ version }}"
1111# Don't publish to crates.io - we only do GitHub releases
1212publish = false
13- # Release all packages in the workspace together with the same version
14- release = true
1513# Update Cargo.toml versions in release PR
1614pr_draft = false
1715pr_labels = [" release" ]
You can’t perform that action at this time.
0 commit comments