mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
modules/webhook: Ignore label actions to reduce noise for now.
This commit is contained in:
parent
e3acf68bf2
commit
67c91288e6
1 changed files with 8 additions and 0 deletions
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue