Skip to content

Commit 4fc8d98

Browse files
committed
refactor: remove extra step in release-prep.sh
1 parent 29292fd commit 4fc8d98

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

ci/build/release-prep.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,14 @@ main() {
8383
echo -e "Great! We'll prep a PR for updating to $CODE_SERVER_VERSION_TO_UPDATE\n"
8484
$CMD rg -g '!yarn.lock' -g '!*.svg' -g '!CHANGELOG.md' --files-with-matches --fixed-strings "${CODE_SERVER_CURRENT_VERSION}" | $CMD xargs sd "$CODE_SERVER_CURRENT_VERSION" "$CODE_SERVER_VERSION_TO_UPDATE"
8585

86-
# Ensure the tests are passing and code coverage is up-to-date
87-
echo -e "Running unit tests and updating code coverage...\n"
88-
$CMD yarn test:unit
89-
9086
$CMD git commit -am "chore(release): bump version to $CODE_SERVER_VERSION_TO_UPDATE"
9187

9288
# This runs from the root so that's why we use this path vs. ../../
9389
RELEASE_TEMPLATE_STRING=$(cat ./.github/PULL_REQUEST_TEMPLATE/release_template.md)
9490

9591
echo -e "\nOpening a draft PR on GitHub"
9692
# To read about these flags, visit the docs: https://cli.github.com/manual/gh_pr_create
97-
$CMD gh pr create --base main --title "release: $CODE_SERVER_VERSION_TO_UPDATE" --body "$RELEASE_TEMPLATE_STRING" --reviewer @cdr/code-server-reviewers --repo cdr/code-server --draft
93+
$CMD gh pr create --base main --title "release: $CODE_SERVER_VERSION_TO_UPDATE" --body "$RELEASE_TEMPLATE_STRING" --reviewer @cdr/code-server-reviewers --repo cdr/code-server --draft --assignee "@me"
9894

9995
# Open PR in browser
10096
$CMD gh pr view --web

0 commit comments

Comments
 (0)