From f3b19bcfb4884015a96a86009a6875ce907f0544 Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Fri, 17 May 2024 21:07:55 +0200 Subject: [PATCH] ci: reduce list of releasable tags to `feat`, `fix` and `perf` --- .github/workflows/release-please.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index adaacf9..967234b 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -21,13 +21,7 @@ jobs: [ { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug Fixes", "hidden": false }, - { "type": "docs", "section": "Documentation", "hidden": false }, - { "type": "build", "section": "Build Related", "hidden": false }, - { "type": "chore", "section": "Chores", "hidden": false }, - { "type": "perf", "section": "Chores", "hidden": false }, - { "type": "ci", "section": "Chores", "hidden": false }, - { "type": "refactor", "section": "Chores", "hidden": false }, - { "type": "test", "section": "Chores", "hidden": false } + { "type": "perf", "section": "Performance Improvements", "hidden": false } ] - uses: actions/checkout@v4 if: ${{ steps.release.outputs.release_created }}