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 <mahlzahn@posteo.de>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
This commit is contained in:
0ko 2026-04-17 15:24:58 +02:00
parent b6b5592e7f
commit 766c9c64f5

View file

@ -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