fix(ci): correct release-please changelog section names and tag format

This commit is contained in:
SaelixCode
2026-03-24 19:06:19 -04:00
parent c2d5d37be4
commit e653bc2210
+11 -10
View File
@@ -1,21 +1,22 @@
{ {
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": false,
"packages": { "packages": {
".": { ".": {
"release-type": "node", "release-type": "node",
"bump-minor-pre-major": true, "bump-minor-pre-major": true,
"changelog-path": "CHANGELOG.md", "changelog-path": "CHANGELOG.md",
"changelog-sections": [ "changelog-sections": [
{ "type": "feat", "section": "### Added" }, { "type": "feat", "section": "Added" },
{ "type": "fix", "section": "### Fixed" }, { "type": "fix", "section": "Fixed" },
{ "type": "perf", "section": "### Fixed" }, { "type": "perf", "section": "Fixed" },
{ "type": "revert", "section": "### Fixed" }, { "type": "revert", "section": "Fixed" },
{ "type": "security", "section": "### Security" }, { "type": "security", "section": "Security" },
{ "type": "docs", "section": "### Documentation", "hidden": true }, { "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "chore", "section": "### Miscellaneous", "hidden": true }, { "type": "chore", "section": "Miscellaneous", "hidden": true },
{ "type": "ci", "section": "### CI/CD", "hidden": true }, { "type": "ci", "section": "CI/CD", "hidden": true },
{ "type": "refactor", "section": "### Changed", "hidden": true }, { "type": "refactor", "section": "Changed", "hidden": true },
{ "type": "test", "section": "### Tests", "hidden": true } { "type": "test", "section": "Tests", "hidden": true }
] ]
} }
} }