From 6067377b72d510306c3eacf06929972d31328272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20St=C3=BCrmer?= Date: Sun, 21 Jan 2024 23:07:32 +0000 Subject: [PATCH] Fix labels in release drafter config --- .github/release.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index 71e4f8c..6052a07 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -4,25 +4,35 @@ changelog: - "ignore for release" categories: - title: ":boom: Breaking Changes" - label: "breaking" + labels: + - "breaking" - title: ":rocket: Features" - label: "enhancement" + labels: + - "enhancement" - title: ":fire: Removals and Deprecations" - label: "removal" + labels: + - "removal" - title: ":beetle: Fixes" - label: "bug" + labels: + - "bug" - title: ":racehorse: Performance" - label: "performance" + labels: + - "performance" - title: ":rotating_light: Testing" - label: "testing" + labels: + - "testing" - title: ":construction_worker: Continuous Integration" - label: "ci" + labels: + - "ci" - title: ":books: Documentation" - label: "documentation" + labels: + - "documentation" - title: ":hammer: Refactoring" - label: "refactoring" + labels: + - "refactoring" - title: ":lipstick: Style" - label: "style" + labels: + - "style" - title: ":package: Dependencies" labels: - "dependencies"