From 4968898a0abc81e3438a28fc983ecb0bcb75c5c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 4 Jul 2024 13:46:26 +0200 Subject: [PATCH] ci: refine release-please configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/release-please/config.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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 } + ] } -- 2.34.1