From 2da0e28b04fbecd02f79371c45b0e3dc5b3ab915 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 22 Jul 2022 19:09:00 +0200 Subject: [PATCH] [MIRROR] Renamed Balance/Rebalance to Balance, and removes unused rebalance tag [MDB IGNORE] (#15103) * Renamed Balance/Rebalance to Balance, and removes unused rebalance tag (#68485) * Renamed Balance/Rebalance to Balance, and removes unused rebalance tag Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> --- .github/gbp.toml | 2 +- tools/WebhookProcessor/github_webhook_processor.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) 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;