Skip to content

Commit 2e9fbe3

Browse files
committed
Add advice to the mergeback PR on how to run the checks quicker
1 parent fb28913 commit 2e9fbe3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/post-release-mergeback.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,17 @@ jobs:
114114
run: |
115115
set -exu
116116
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+
)
118128
119129
# Update the version number ready for the next release
120130
npm version patch --no-git-tag-version
@@ -134,4 +144,5 @@ jobs:
134144
--title "${pr_title}" \
135145
--label "Update dependencies" \
136146
--body "${pr_body}" \
147+
--assignee "${GITHUB_ACTOR}" \
137148
--draft

0 commit comments

Comments
 (0)