From 7ea715ae04438ed9a4af79e0485c10f961e21fb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Emre=20Kabakc=C4=B1?= Date: Sat, 11 Apr 2026 01:21:10 +0100 Subject: [PATCH] fix(ci): use default release-please title pattern variables release-please v4 warns and falls back to the default title when the custom pull-request-title-pattern is missing ${scope} and ${component} placeholders. Use the canonical pattern `chore${scope}: release${component} ${version}` which evaluates to `chore(main): release 3.1.2` for the single-component root package and matches the format of the old tagged release PRs in history. --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index 827a7ccdd..0226929ff 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -9,7 +9,7 @@ "prerelease": false, "separate-pull-requests": false, "changelog-path": "CHANGELOG.md", - "pull-request-title-pattern": "chore(main): release ${version}", + "pull-request-title-pattern": "chore${scope}: release${component} ${version}", "packages": { ".": { "package-name": "@lobu/gateway",