File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments