Actually use action_desc
in github.py.issues, so that we can see what things
are labeled as
This commit is contained in:
parent
d0caebbc57
commit
a41cf7b471
1 changed files with 2 additions and 1 deletions
|
@ -222,7 +222,8 @@ class Module(ModuleManager.BaseModule):
|
|||
issue_title = data["issue"]["title"]
|
||||
author = utils.irc.bold(data["sender"]["login"])
|
||||
url = data["issue"]["html_url"]
|
||||
return ["[issue] %s %s: %s - %s" % (author, action, issue_title, url)]
|
||||
return ["[issue] %s %s: %s - %s" %
|
||||
(author, action_desc, issue_title, url)]
|
||||
def issue_comment(self, event, full_name, data):
|
||||
action = data["action"]
|
||||
issue_title = data["issue"]["title"]
|
||||
|
|
Loading…
Reference in a new issue