mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-12 22:10:25 +00:00
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:
parent
b6b5592e7f
commit
766c9c64f5
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue