File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ ensure_release_branch() {
27
27
}
28
28
29
29
maybe_create_github_pr () {
30
- local MESSAGE=${1}
30
+ local MESSAGE=$@
31
31
GH_COMMAND=$( which gh)
32
32
if [ " $GH_COMMAND " != " " ]; then
33
- gh pr create --base $BASE_BRANCH --head $RELEASE_BRANCH --title $MESSAGE --body $MESSAGE
33
+ gh pr create --base $BASE_BRANCH --head $RELEASE_BRANCH --title " $MESSAGE " --body " $MESSAGE "
34
34
fi
35
35
}
36
36
@@ -64,7 +64,8 @@ main() {
64
64
MESSAGE=" release $RELEASE_VERSION "
65
65
git commit -am " release $RELEASE_VERSION "
66
66
git tag -a $RELEASE_VERSION -m " release $RELEASE_VERSION "
67
- git tag -a docs/$DOCS_VERSION -m " docs $DOCS_VERSION "
67
+ # We don't want to tag the docs in all the cases, as some manual steps might be needed (e.g. updating getting started guides)
68
+ # git tag -a docs/$DOCS_VERSION -m "docs $DOCS_VERSION"
68
69
69
70
else
70
71
#
You can’t perform that action at this time.
0 commit comments