From 766c9c64f5a9f6c84b906ebd7cfad1aee87a203a Mon Sep 17 00:00:00 2001 From: 0ko <0ko@noreply.codeberg.org> Date: Fri, 17 Apr 2026 15:24:58 +0200 Subject: [PATCH] fix(rna): prioritize breaking changes without a feature or bug label over non-breaking changes (#12124) Related: https://codeberg.org/forgejo/website/pulls/843#issuecomment-13131897 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/12124 Reviewed-by: Robert Wolff Reviewed-by: Michael Kriese --- release-notes-assistant.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release-notes-assistant.sh b/release-notes-assistant.sh index 4963edf286..9fdadc06f3 100755 --- a/release-notes-assistant.sh +++ b/release-notes-assistant.sh @@ -40,7 +40,7 @@ function test_main() { test "$(categorize)" = 'BB Breaking bug fixes' test_payload_labels $label_worth $label_breaking - test "$(categorize)" = 'ZB Breaking changes without a feature or bug label' + test "$(categorize)" = 'BC Breaking changes without a feature or bug label' test_payload_labels $label_worth $label_ui $label_feature test "$(categorize)" = 'CA User Interface features' @@ -232,7 +232,7 @@ function categorize() { elif $is_bug; then echo -n BB Breaking bug fixes else - echo -n ZB Breaking changes without a feature or bug label + echo -n BC Breaking changes without a feature or bug label fi elif $is_ui; then if $is_feature; then