From 1aec7e3a7e81575041a86a7b713ab7f3d08a81f3 Mon Sep 17 00:00:00 2001 From: Dimitar Dimitrov Date: Fri, 3 Jan 2025 14:14:29 +0200 Subject: [PATCH] notify-changelog-cut.sh: clarify this is an automated action (#10327) I see some people replying to these comments, but in reality the author wouldn't normally follow up Signed-off-by: Dimitar Dimitrov --- tools/release/notify-changelog-cut.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release/notify-changelog-cut.sh b/tools/release/notify-changelog-cut.sh index b72c883c19b..74ca856ef52 100755 --- a/tools/release/notify-changelog-cut.sh +++ b/tools/release/notify-changelog-cut.sh @@ -35,7 +35,7 @@ for PR_ID in ${OPEN_PR_IDS}; do # The backtick here is markdown and we don't want to get it evaluated by the shell. # shellcheck disable=SC2016 - PR_COMMENT_LINK=$(gh pr comment "${PR_ID}" --body 'The CHANGELOG has just been cut to prepare for the next release. Please rebase `main` and eventually move the CHANGELOG entry added / updated in this PR to the top of the '$CHANGELOG_PATH' document. Thanks!') + PR_COMMENT_LINK=$(gh pr comment "${PR_ID}" --body ':robot: _Automated comment_

The CHANGELOG has just been cut to prepare for the next release. Please rebase `main` and eventually move the CHANGELOG entry added / updated in this PR to the top of the '$CHANGELOG_PATH' document. Thanks!') gh pr edit "${PR_ID}" --add-label "${NOTIFICATION_LABEL}" >/dev/null echo " Notification posted: ${PR_COMMENT_LINK}"