From d477bcec9d7608ce3d5bcd1a0459215981877595 Mon Sep 17 00:00:00 2001 From: Nicolas Oeschger Date: Fri, 5 Jul 2024 10:48:21 +0200 Subject: [PATCH] ci: Add `changelog-types` to `release-please` action config --- .github/workflows/release-please.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index fa7894f..5266921 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -17,3 +17,17 @@ jobs: with: token: ${{ secrets.RELEASE_PLEASE_TOKEN }} release-type: node + changelog-types: | + [ + {"type":"feat","section":"๐Ÿš€ Features","hidden":false}, + {"type":"fix","section":"๐Ÿ› Bug Fixes","hidden":false}, + {"type":"perf","section":"โ†—๏ธ Performance Improvements","hidden":false}, + {"type":"revert","section":"๐Ÿ”™ Reverts","hidden":false}, + {"type":"docs","section":"๐Ÿ“– Documentation","hidden":false}, + {"type":"style","section":"๐Ÿ’… Styles","hidden":false}, + {"type":"chore","section":"๐Ÿงน Chores","hidden":true}, + {"type":"refactor","section":"๐Ÿ›  Refactorings","hidden":false}, + {"type":"test","section":"โœ… Tests","hidden":false}, + {"type":"build","section":"๐Ÿ“ฆ Build System & Dependencies","hidden":false}, + {"type":"ci","section":"๐Ÿ”„ CI/CD","hidden":true} + ]