From e653bc2210f07d83fcf16ca97e3c2863a40e2cdf Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Tue, 24 Mar 2026 19:06:19 -0400 Subject: [PATCH] fix(ci): correct release-please changelog section names and tag format --- release-please-config.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 8048e5a9..7b015d25 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,21 +1,22 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "include-component-in-tag": false, "packages": { ".": { "release-type": "node", "bump-minor-pre-major": true, "changelog-path": "CHANGELOG.md", "changelog-sections": [ - { "type": "feat", "section": "### Added" }, - { "type": "fix", "section": "### Fixed" }, - { "type": "perf", "section": "### Fixed" }, - { "type": "revert", "section": "### Fixed" }, - { "type": "security", "section": "### Security" }, - { "type": "docs", "section": "### Documentation", "hidden": true }, - { "type": "chore", "section": "### Miscellaneous", "hidden": true }, - { "type": "ci", "section": "### CI/CD", "hidden": true }, - { "type": "refactor", "section": "### Changed", "hidden": true }, - { "type": "test", "section": "### Tests", "hidden": true } + { "type": "feat", "section": "Added" }, + { "type": "fix", "section": "Fixed" }, + { "type": "perf", "section": "Fixed" }, + { "type": "revert", "section": "Fixed" }, + { "type": "security", "section": "Security" }, + { "type": "docs", "section": "Documentation", "hidden": true }, + { "type": "chore", "section": "Miscellaneous", "hidden": true }, + { "type": "ci", "section": "CI/CD", "hidden": true }, + { "type": "refactor", "section": "Changed", "hidden": true }, + { "type": "test", "section": "Tests", "hidden": true } ] } }