File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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"
220219else
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"
228226fi
229227
230228echo " Release script completed successfully!"
You can’t perform that action at this time.
0 commit comments