From a9f21c9371ac4ad6befacc4ec8a09917fec801cc Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 9 Sep 2025 15:53:25 +0200 Subject: [PATCH] Extra text in the PR. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 763c899c1a..570b9a2191 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -250,7 +250,7 @@ jobs: fi echo "Merge all changes from $BRANCH_NAME back into '$MERGE_INTO' using a PR" - PR_URL=$(gh pr create -B $MERGE_INTO -H $BRANCH_NAME --title "🤖 Automatic PR to merge all changes into the '$MERGE_INTO' branch." --body '🤖 Created by GitHub action') + PR_URL=$(gh pr create -B $MERGE_INTO -H $BRANCH_NAME --title "🤖 Automatic PR to merge all changes into the '$MERGE_INTO' branch." --body '🤖 This PR was created automatically by a GitHub action to merge the changed files into this branch. It will be merged automatically. `Share and enjoy`') echo "PR URL is '$PR_URL'" IFS='/' read -ra parts <<< "$PR_URL" PR_NR=$(printf %s\\n "${parts[@]:(-1)}") @@ -272,7 +272,7 @@ jobs: echo "Also merge everything into main since this is a release." echo 'create PR' - PR_URL=$(gh pr create -B main -H develop --title "🤖 Automatic PR to merge all changes into the main branch." --body "🤖 Created by GitHub action") + PR_URL=$(gh pr create -B main -H develop --title "🤖 Automatic PR to merge all changes into the main branch." --body "🤖 This PR was created automatically by a GitHub action to merge the changed files into this branch. It will be merged automatically. `Share and enjoy`") echo "PR URL is '$PR_URL'" IFS='/' read -ra parts <<< "$PR_URL"