Skip to content

Commit ee40dcc

Browse files
committed
ci(release): don't add release label to PR
1 parent 8bf072c commit ee40dcc

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

mise-tasks/release-pr

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,16 +215,14 @@ if [[ -n "$EXISTING_PR" ]]; then
215215
echo "Updating existing PR #$EXISTING_PR..."
216216
run_cmd gh pr edit "$EXISTING_PR" \
217217
--title "$PR_TITLE" \
218-
--body "$PR_BODY" \
219-
--add-label "release" || echo "Warning: Could not update PR, may already have release label"
218+
--body "$PR_BODY" || echo "Warning: Could not update PR"
220219
else
221220
echo "Creating new PR..."
222221
run_cmd gh pr create \
223222
--title "$PR_TITLE" \
224223
--body "$PR_BODY" \
225224
--head "$RELEASE_BRANCH" \
226-
--base "$BASE_BRANCH" \
227-
--label "release" || echo "Warning: Could not create PR, may already exist"
225+
--base "$BASE_BRANCH" || echo "Warning: Could not create PR, may already exist"
228226
fi
229227

230228
echo "Release script completed successfully!"

0 commit comments

Comments
 (0)