File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -83,18 +83,14 @@ main() {
83
83
echo -e " Great! We'll prep a PR for updating to $CODE_SERVER_VERSION_TO_UPDATE \n"
84
84
$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 "
85
85
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
-
90
86
$CMD git commit -am " chore(release): bump version to $CODE_SERVER_VERSION_TO_UPDATE "
91
87
92
88
# This runs from the root so that's why we use this path vs. ../../
93
89
RELEASE_TEMPLATE_STRING=$( cat ./.github/PULL_REQUEST_TEMPLATE/release_template.md)
94
90
95
91
echo -e " \nOpening a draft PR on GitHub"
96
92
# 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 "
98
94
99
95
# Open PR in browser
100
96
$CMD gh pr view --web
You can’t perform that action at this time.
0 commit comments