skip gitlab issue update action

This commit is contained in:
Morgan McMillian 2022-08-20 07:23:16 -07:00
parent 7536d15c73
commit 44ccc9327c

View file

@ -210,6 +210,8 @@ def gl_issue_event(gateway, data):
body = f"[{project}] {username} {action} issue #{oid}: {title}\n"
if action in ["open", "reopen"]:
body += f"{description}"
elif action == "update":
return
logging.debug(body)
mb_url = config["gitlab_gateway"]