From 537e1d737426cbde7566c6978c714c3d83d45b6b Mon Sep 17 00:00:00 2001 From: michael faith Date: Tue, 21 Jan 2025 07:28:34 -0600 Subject: [PATCH] ci: update release config to hide non-user-facing categories (#757) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## PR Checklist - [ ] Addresses an existing open issue: fixes #000 - [ ] That issue was marked as [`status: accepting prs`](/~https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](/~https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/main/.github/CONTRIBUTING.md) were taken ## Overview This change backports this update to CTA: /~https://github.com/JoshuaKGoldberg/create-typescript-app/pull/1810 reducing the categories that release-it shows in changelog updates. --- .release-it.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.release-it.json b/.release-it.json index 2b95facc..366e0635 100644 --- a/.release-it.json +++ b/.release-it.json @@ -12,7 +12,19 @@ "plugins": { "@release-it/conventional-changelog": { "infile": "CHANGELOG.md", - "preset": "angular" + "preset": "angular", + "types": [ + { "section": "Features", "type": "feat" }, + { "section": "Bug Fixes", "type": "fix" }, + { "section": "Performance Improvements", "type": "perf" }, + { "hidden": true, "type": "build" }, + { "hidden": true, "type": "chore" }, + { "hidden": true, "type": "ci" }, + { "hidden": true, "type": "docs" }, + { "hidden": true, "type": "refactor" }, + { "hidden": true, "type": "style" }, + { "hidden": true, "type": "test" } + ] } } }