From 34315805ba3121c8944739a704bd0963f836cf3e Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 7 Sep 2017 06:19:35 -0400 Subject: [PATCH] Fixes tgstation-server autotagging --- tools/github_webhook_processor.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/github_webhook_processor.php b/tools/github_webhook_processor.php index 4ccdafa3f3..3f1120fad8 100644 --- a/tools/github_webhook_processor.php +++ b/tools/github_webhook_processor.php @@ -138,7 +138,11 @@ function tag_pr($payload, $opened) { if(strpos($lowertitle, 'refactor') !== FALSE) $tags[] = 'Refactor'; +<<<<<<< HEAD if(strpos($lowertitle, 'revert') !== FALSE || strpos($lowertitle, 'removes') !== FALSE) +======= + if(strpos(strtolower($title), 'revert') !== FALSE || strpos(strtolower($title), 'removes') !== FALSE) +>>>>>>> 6d41d71... Another fix (#30441) $tags[] = 'Revert/Removal'; }