From e26d76a4791e7c5d30b7085cee4ef71a18083d32 Mon Sep 17 00:00:00 2001 From: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Date: Thu, 21 Jul 2022 16:47:37 -0700 Subject: [PATCH] Renamed Balance/Rebalance to Balance, and removes unused rebalance tag (#68485) --- .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 d05d5d32121..2424cefcf80 100644 --- a/tools/WebhookProcessor/github_webhook_processor.php +++ b/tools/WebhookProcessor/github_webhook_processor.php @@ -763,9 +763,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;