0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 18:22:50 +01:00

modules/webhook: Ignore label actions to reduce noise for now.

This commit is contained in:
Jason Volk 2019-06-15 12:31:14 -07:00
parent e3acf68bf2
commit 67c91288e6

View file

@ -694,6 +694,10 @@ github_handle__issues(std::ostream &out,
} }
else if(action == "labeled") 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 const json::object label
{ {
content["label"] content["label"]
@ -718,6 +722,10 @@ github_handle__issues(std::ostream &out,
} }
else if(action == "unlabeled") 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 const json::object label
{ {
content["label"] content["label"]