Skip to content

Commit 16f0fb3

Browse files
authored
Add a reminder to update the title of update PRs when fixes are needed (#7760)
follow up on https://dd.slack.com/archives/C047YAMGZ7T/p1728891323908619?thread_ts=1728885120.046349&cid=C047YAMGZ7T we want code fixes for new versions support to show up in release notes.
1 parent f74856b commit 16f0fb3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/update-gradle-dependencies.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,11 @@ jobs:
7171
env:
7272
GH_TOKEN: ${{ github.token }}
7373
run: |
74-
gh pr create --title "Update Gradle dependencies" \
75-
--body "This PR updates the Gradle dependencies. ⚠️ Don't forget to squash commits before merging. ⚠️" \
74+
# use echo to set a multiline body for the PR
75+
echo -e "This PR updates the Gradle dependencies. ⚠️ Don't forget to squash commits before merging. ⚠️\n\n- [ ] Update PR title if a code change is needed to support one of those new dependencies" | \
76+
gh pr create --title "Update Gradle dependencies" \
7677
--base master \
7778
--head $BRANCH_NAME \
7879
--label "tag: dependencies" \
7980
--label "tag: no release notes"
81+
--body-file -

0 commit comments

Comments
 (0)