From 65b667bb09d1f7c7d1d00d081b4218851daa2c47 Mon Sep 17 00:00:00 2001 From: Lukas Spirig Date: Mon, 2 Dec 2024 16:27:40 +0100 Subject: [PATCH] build: add changelog sections config to release please (#3268) --- release-please-config.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index 36df609cb4..5a6ca7bf04 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -2,6 +2,20 @@ "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "release-type": "node", "include-component-in-tag": false, + "changelog-sections": [ + { "type": "feat", "section": "Features" }, + { "type": "feature", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "revert", "section": "Reverts" }, + { "type": "docs", "section": "Documentation" }, + { "type": "refactor", "section": "Code Refactoring" }, + { "type": "style", "section": "Styles", "hidden": true }, + { "type": "chore", "section": "Miscellaneous Chores", "hidden": true }, + { "type": "test", "section": "Tests", "hidden": true }, + { "type": "build", "section": "Build System", "hidden": true }, + { "type": "ci", "section": "Continuous Integration", "hidden": true } + ], "packages": { ".": { "changelog-path": "CHANGELOG.md"