From: Jérôme Benoit Date: Thu, 4 Jul 2024 11:46:26 +0000 (+0200) Subject: ci: refine release-please configuration X-Git-Tag: ocpp-server@v1.4.0~19 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=4968898a0abc81e3438a28fc983ecb0bcb75c5c5;p=e-mobility-charging-stations-simulator.git ci: refine release-please configuration Signed-off-by: Jérôme Benoit --- diff --git a/.github/release-please/config.json b/.github/release-please/config.json index 5987c287..475a156e 100644 --- a/.github/release-please/config.json +++ b/.github/release-please/config.json @@ -1,7 +1,22 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "release-type": "node", + "include-component-in-tag": false, "packages": { ".": {} - } + }, + "changelog-sections": [ + { "type": "feat", "section": "🚀 Features", "hidden": false }, + { "type": "fix", "section": "🐞 Fixes", "hidden": false }, + { "type": "docs", "section": "📚 Documentation", "hidden": false }, + + { "type": "perf", "section": "✨ Polish", "hidden": false }, + { "type": "refactor", "section": "✨ Polish", "hidden": false }, + + { "type": "chore", "section": "🧹 Chores", "hidden": true }, + { "type": "test", "section": "🧹 Chores", "hidden": false }, + + { "type": "build", "section": "🤖 Automation", "hidden": false }, + { "type": "ci", "section": "🤖 Automation", "hidden": true } + ] }