We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee40dcc commit 29fe4f4Copy full SHA for 29fe4f4
1 file changed
mise-tasks/release-pr
@@ -195,12 +195,12 @@ echo "Creating or updating release PR..."
195
PR_BODY=$(git cliff --tag "v$NEW_VERSION" --unreleased --strip header 2>/dev/null | tail -n +3 || echo "Release $NEW_VERSION")
196
197
# Create PR title
198
+PR_TITLE="chore(release): $NEW_VERSION"
199
+
200
if [[ "$TEST_MODE" == "true" ]]; then
- PR_TITLE="[TEST MODE] chore(release): $NEW_VERSION"
201
+ PR_TITLE="[TEST MODE] $PR_TITLE"
202
# Prepend test mode warning to body
- PR_BODY="⚠️ **TEST MODE** - This is a test release and will not be published to PyPI.$(echo)$(echo)$PR_BODY"
-else
203
- PR_TITLE="chore(release): $NEW_VERSION"
+ PR_BODY="⚠️ **TEST MODE** - This is a test release and will not be published to PyPI.\n\n$PR_BODY"
204
fi
205
206
# Check if PR already exists
0 commit comments