From 6c13dcce746abe7c96c7673229ea730413e6f38f Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 6 Oct 2024 19:15:12 +0100 Subject: [PATCH] chore: ignore `chore` from changelog --- release-please-config.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index 3794d56..bd019a0 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,5 +6,16 @@ "package-name": "", "release-type": "simple" } - } + }, + "changelog-sections": [ + { "type": "feat", "section": "Features" }, + { "type": "feature", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "docs", "section": "Documentation", "hidden": true }, + { "type": "style", "section": "Styles", "hidden": true }, + { "type": "chore", "section": "Miscellaneous Chores", "hidden": true }, + { "type": "test", "section": "Tests", "hidden": true }, + { "type": "ci", "section": "Continuous Integration", "hidden": true } + ] }