File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,17 @@ jobs:
114
114
run : |
115
115
set -exu
116
116
pr_title="Mergeback ${VERSION} ${HEAD_BRANCH} into ${BASE_BRANCH}"
117
- pr_body="Updates version and changelog."
117
+ pr_body=$(cat << EOF
118
+ This PR bumps the version number and updates the changelog after the ${VERSION} release.
119
+
120
+ Please do the following:
121
+
122
+ - [ ] Remove and re-add the "Update dependencies" label to the PR to trigger just this workflow.
123
+ - [ ] Wait for the "Update dependencies" workflow to push a commit updating the dependencies.
124
+ - [ ] Mark the PR as ready for review to trigger the full set of PR checks.
125
+ - [ ] Approve and merge the PR.
126
+ EOF
127
+ )
118
128
119
129
# Update the version number ready for the next release
120
130
npm version patch --no-git-tag-version
@@ -134,4 +144,5 @@ jobs:
134
144
--title "${pr_title}" \
135
145
--label "Update dependencies" \
136
146
--body "${pr_body}" \
147
+ --assignee "${GITHUB_ACTOR}" \
137
148
--draft
You can’t perform that action at this time.
0 commit comments