Skip to content

Commit 311eb75

Browse files
committed
fixes
1 parent 2529836 commit 311eb75

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/rust-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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()

rust/main/release-plz.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ changelog_config = "cliff.toml"
1010
git_tag_name = "agents-v{{ version }}"
1111
# Don't publish to crates.io - we only do GitHub releases
1212
publish = false
13-
# Release all packages in the workspace together with the same version
14-
release = true
1513
# Update Cargo.toml versions in release PR
1614
pr_draft = false
1715
pr_labels = ["release"]

0 commit comments

Comments
 (0)