From ff897fc184f35d715ca9922f5735385ba6fdc9fe Mon Sep 17 00:00:00 2001 From: Michael Beemer Date: Tue, 28 Feb 2023 12:02:41 -0500 Subject: [PATCH] add additional sections to the release notes Signed-off-by: Michael Beemer --- release-please-config.json | 59 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 3 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index fb3acab4c..c180a14fe 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -8,9 +8,62 @@ "prerelease": false, "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": true, - "extra-files": [ - "snap/snapcraft.yaml" + "extra-files": ["snap/snapcraft.yaml"], + "changelog-sections": [ + { + "type": "feat", + "section": "โœจ New Features" + }, + { + "type": "fix", + "section": "๐Ÿ› Bug Fixes" + }, + { + "type": "chore", + "section": "๐Ÿงน Chore" + }, + { + "type": "docs", + "section": "๐Ÿ“š Documentation" + }, + { + "type": "perf", + "section": "๐Ÿš€ Performance" + }, + { + "type": "build", + "hidden": true, + "section": "๐Ÿ› ๏ธ Build" + }, + { + "type": "deps", + "section": "๐Ÿ“ฆ Dependencies" + }, + { + "type": "ci", + "hidden": true, + "section": "๐Ÿšฆ CI" + }, + { + "type": "refactor", + "section": "๐Ÿ”„ Refactoring" + }, + { + "type": "revert", + "section": "๐Ÿ”™ Reverts" + }, + { + "type": "style", + "hidden": true, + "section": "๐ŸŽจ Styling" + }, + { + "type": "test", + "hidden": true, + "section": "๐Ÿงช Tests" + } ] } - } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" }