From 76ea5e0bb90b31ae265a27407b59c3b92dcba123 Mon Sep 17 00:00:00 2001 From: AndreasIgel Date: Sun, 9 Aug 2026 11:51:45 +0200 Subject: [PATCH] Rename release pipeline commit messages and PR title from chore to release Replace the conventional-commit type "chore" with "release" for commit messages and "Finalization PR:" for the PR title, as "chore" implies routine maintenance rather than a release finalization. - Commit 1: "chore: release version X" -> "release: set version X" - Commit 2: "chore: prepare next version Y" -> "release: prepare next version Y" - PR title: "chore: release X and prepare Y" -> "Finalization PR: release X and prepare Y" Branch name "release/vX.Y.Z" is unchanged. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .github/workflows/maven-central-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-central-release.yml b/.github/workflows/maven-central-release.yml index c625b51e..db1364ba 100644 --- a/.github/workflows/maven-central-release.yml +++ b/.github/workflows/maven-central-release.yml @@ -123,7 +123,7 @@ jobs: echo "No version changes detected - version already set to $VERSION" echo "has_changes=false" >> "$GITHUB_OUTPUT" else - git commit -m "chore: release version $VERSION" + git commit -m "release: set version $VERSION" echo "has_changes=true" >> "$GITHUB_OUTPUT" fi @@ -270,7 +270,7 @@ jobs: # Commit as a second commit on the release branch. The tag (already # created and pushed on the first commit) is unaffected by this commit. git add pom.xml core/pom.xml processor/pom.xml example/pom.xml example-custom-generator/pom.xml - git commit -m "chore: prepare next version $NEXT_VERSION" + git commit -m "release: prepare next version $NEXT_VERSION" # Force-push the updated branch so the remote has both commits. # --force-with-lease is safe: it only succeeds if the remote branch is @@ -294,6 +294,6 @@ jobs: gh pr create \ --base main \ --head "$BRANCH" \ - --title "chore: release $VERSION and prepare $NEXT_VERSION" \ + --title "Finalization PR: release $VERSION and prepare $NEXT_VERSION" \ --body "Automated release of v$VERSION plus next-snapshot bump to \`$NEXT_VERSION\`. Review and merge to update \`main\`; created via PR so branch protection is not bypassed." fi