0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02: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")
{
// 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"]