diff --git a/.github/gbp.toml b/.github/gbp.toml index 8b7170295e9..70032056dfe 100644 --- a/.github/gbp.toml +++ b/.github/gbp.toml @@ -5,7 +5,7 @@ reset_label = "GBP: Reset" "Accessibility" = 3 "Administration" = 2 "Atomic" = 2 -"Balance/Rebalance" = -5 +"Balance" = -5 "Code Improvement" = 2 "Documentation" = 1 "Feature" = -6 diff --git a/tools/WebhookProcessor/github_webhook_processor.php b/tools/WebhookProcessor/github_webhook_processor.php index 140abd7bd56..a42277abee0 100644 --- a/tools/WebhookProcessor/github_webhook_processor.php +++ b/tools/WebhookProcessor/github_webhook_processor.php @@ -764,9 +764,8 @@ function checkchangelog($payload, $compile = true) { } break; case 'balance': - case 'rebalance': if($item != 'rebalanced something'){ - $tags[] = 'Balance/Rebalance'; + $tags[] = 'Balance'; $currentchangelogblock[] = array('type' => 'balance', 'body' => $item); } break;