From d4eddf109fc2bf112ded9f7ee7fca4d188269aaa Mon Sep 17 00:00:00 2001 From: Matteo Rossi Date: Mon, 23 Oct 2023 21:58:11 +0200 Subject: [PATCH] fix: display all changelog-types (#47) --- .github/workflows/release.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3390591..15676b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,6 +28,20 @@ jobs: release-type: ruby token: ${{secrets.GITHUB_TOKEN}} version-file: "lib/itax_code/version.rb" + changelog-types: > + [ + { "type": "build", "section": "Build System", "hidden": false }, + { "type": "ci", "section": "Continuous Integration", "hidden": false }, + { "type": "chore", "section": "Miscellaneous Chores", "hidden": false }, + { "type": "docs", "section": "Documentation", "hidden": false }, + { "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": "refactor", "section": "Code Refactoring", "hidden": false }, + { "type": "style", "section": "Styles", "hidden": false }, + { "type": "test", "section": "Tests", "hidden": false } + ] - uses: actions/checkout@v4 if: ${{steps.release.outputs.release_created}} - uses: ruby/setup-ruby@v1