From 79f6acae1a6c4fb2644b5417f6b4abc70da708fa Mon Sep 17 00:00:00 2001 From: Marcelo Magallon Date: Mon, 18 Nov 2024 07:44:42 -0600 Subject: [PATCH] Chore: change release commit title (#1039) By default release-please creates a commit that looks like this: chore(main): release vX.Y.Z Change this to: Chore: release vX.Y.Z because the scope is superflous (this is not a monorepo, we only have one thing that we can release) and using uppercase to start the subject line is good form. Signed-off-by: Marcelo E. Magallon --- .github/release-please/release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/release-please/release-please-config.json b/.github/release-please/release-please-config.json index 119346665..28210a9e0 100644 --- a/.github/release-please/release-please-config.json +++ b/.github/release-please/release-please-config.json @@ -13,5 +13,6 @@ } }, "draft-pull-request": true, + "pull-request-title-pattern": "Chore: release ${version}", "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" }