From 65e6de38b768d5ad3fbb8c85689de982858d946e Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Tue, 17 Feb 2026 11:33:09 +0000 Subject: [PATCH] fix: configure release drafter to not add exclusive labels Fixes issue where a title like `fix!: ...` would add two labels. The one that matters is the breaking-change. --- .github/release-drafter.yml | 6 +++--- .github/workflows/ack.yml | 7 ------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 9907f7f..ac07c37 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -61,13 +61,13 @@ autolabeler: - "/^BREAKING CHANGE: /i" - label: feat title: - - /^(feat)/i + - /^(feat):/i - label: fix title: - - /^(fix)/i + - /^(fix):/i - label: chore title: - /pre-commit autoupdate/ - - /^(chore|build|ci|test|style)/i + - /^(chore|build|ci|test|style):/i template: | $CHANGES diff --git a/.github/workflows/ack.yml b/.github/workflows/ack.yml index dabc16a..ed77221 100644 --- a/.github/workflows/ack.yml +++ b/.github/workflows/ack.yml @@ -53,16 +53,9 @@ jobs: # see conventional commits prefixes: https://www.conventionalcommits.org labels: | breaking - build chore - ci - docs feat fix - perf - refactor - style - test - name: Update release notes if this is already merged if: github.event.pull_request.merged == true