From 34a79e368e2bfb3fccd6edbc342316e901969e97 Mon Sep 17 00:00:00 2001 From: Silvano Cerza <3314350+silvanocerza@users.noreply.github.com> Date: Fri, 3 May 2024 12:45:18 +0200 Subject: [PATCH] Enhance version bump PR body description (#7644) --- .github/workflows/minor_version_release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/minor_version_release.yml b/.github/workflows/minor_version_release.yml index 9d32fb295..073239e12 100644 --- a/.github/workflows/minor_version_release.yml +++ b/.github/workflows/minor_version_release.yml @@ -79,9 +79,11 @@ jobs: # Create the PR gh pr create -B "${{ steps.branch.outputs.name }}" \ -H bump-version \ - --title 'Bump unstable version' \ - --body 'Part of the release process' \ - --label 'ignore-for-release-notes' + --title "Bump unstable version" \ + --body "This PR bumps the unstable version for ${{ inputs.version }}.\n \ + The release branch \`v${{ steps.versions.outputs.current_release_minor }}.x\` has been correctly created.\n\ + Verify documentation on Readme has been correctly updated before approving and merging this PR." \ + --label "ignore-for-release-notes" - uses: actions/setup-python@v5 with: