From 60053b7c5dce899932dfbc0edaef37fa822047aa Mon Sep 17 00:00:00 2001 From: Peter Svensson Date: Wed, 14 Aug 2024 10:54:24 +0200 Subject: [PATCH] chore: show all sections in change log --- release-please-config.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index e7ec01b..ecd7264 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,8 +6,22 @@ "bump-minor-pre-major": false, "bump-patch-for-minor-pre-major": false, "draft": false, - "prerelease": false + "prerelease": false, + "changelog-sections": [ + { "type": "eat", "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": "style", "section": "Styles" }, + { "type": "chore", "section": "Miscellaneous Chores" }, + { "type": "refactor", "section": "Code Refactoring" }, + { "type": "test", "section": "Tests" }, + { "type": "build", "section": "Build System" }, + { "type": "ci", "section": "Continuous Integration" } + ] } }, "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" -} \ No newline at end of file +}