From 67c91288e6475ef70a005972c994284db822ceed Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 15 Jun 2019 12:31:14 -0700 Subject: [PATCH] modules/webhook: Ignore label actions to reduce noise for now. --- modules/webhook.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/webhook.cc b/modules/webhook.cc index 459cf5219..05b7ba420 100644 --- a/modules/webhook.cc +++ b/modules/webhook.cc @@ -694,6 +694,10 @@ github_handle__issues(std::ostream &out, } else if(action == "labeled") { + // quiet these messages for now until we can figure out how to reduce + // noise around issue opens. + return false; + const json::object label { content["label"] @@ -718,6 +722,10 @@ github_handle__issues(std::ostream &out, } else if(action == "unlabeled") { + // quiet these messages for now until we can figure out how to reduce + // noise around issue opens. + return false; + const json::object label { content["label"]