diff options
| author | 2019-03-19 16:10:59 +0000 | |
|---|---|---|
| committer | 2019-03-19 16:10:59 +0000 | |
| commit | e6a32a8bb9fb2d5f64381131f1934e1b9ce5c189 (patch) | |
| tree | 1be54343a8581c3d2a2fd5a96b13524072b78229 /modules/github | |
| parent | Log which server an ERROR came from (diff) | |
| signature | ||
Don't handle `commented` state in pull_request_review
Diffstat (limited to 'modules/github')
| -rw-r--r-- | modules/github/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py index c3812411..485a109d 100644 --- a/modules/github/__init__.py +++ b/modules/github/__init__.py @@ -536,6 +536,9 @@ class Module(ModuleManager.BaseModule): return [] state = data["review"]["state"] + if state == "commented": + return [] + number = utils.irc.color("#%s" % data["pull_request"]["number"], COLOR_ID) action = data["action"] |
