We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 009a5fd commit a8022b0Copy full SHA for a8022b0
tools/actions/create-release.sh
@@ -27,7 +27,6 @@ TITLE=$(awk "/^## ${RELEASE_DATE}/ { print substr(\$0, 4) }" "doc/changelogs/CHA
27
TEMP_BODY=$(mktemp)
28
awk "/## ${RELEASE_DATE}/,/^<a id=/{ if (!/^<a id=/) print }" "doc/changelogs/CHANGELOG_V${RELEASE_LINE}.md" > "$TEMP_BODY"
29
30
-gh pr create --title "$TITLE" --body-file "$TEMP_BODY"
+gh pr create --title "$TITLE" --body-file "$TEMP_BODY" --base "v$RELEASE_LINE.x"
31
32
rm "$TEMP_BODY"
33
-# TODO: amend with proposal PR
0 commit comments