From e4680b7da02035dfe24d70368a7fb29ed2b42a9b Mon Sep 17 00:00:00 2001 From: Dovid Levine Date: Sun, 20 Sep 2026 15:55:57 +0300 Subject: [PATCH] ci: track dependabot in release-please --- release-please-config.json | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index 5d23149..bd77c65 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,7 +6,33 @@ "changelog-path": "CHANGELOG.md", "include-v-in-tag": true, "bump-minor-pre-major": true, - "extra-types": [ "build" ] + "changelog-sections": [ + { "type": "feat", "section": "Added" }, + { "type": "feature", "section": "Added" }, + { "type": "fix", "section": "Fixed" }, + { "type": "build", "section": "Changed" }, + { "type": "perf", "section": "Changed" }, + { "type": "security", "section": "Security" }, + { "type": "revert", "section": "Changed" }, + { "type": "docs", "section": "Documentation", "hidden": true }, + { "type": "style", "section": "Styles", "hidden": true }, + { + "type": "chore", + "section": "Miscellaneous Chores", + "hidden": true + }, + { + "type": "refactor", + "section": "Code Refactoring", + "hidden": true + }, + { "type": "test", "section": "Tests", "hidden": true }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + } + ] } } }