skip gitlab issue update action
This commit is contained in:
parent
7536d15c73
commit
44ccc9327c
1 changed files with 2 additions and 0 deletions
|
@ -210,6 +210,8 @@ def gl_issue_event(gateway, data):
|
||||||
body = f"[{project}] {username} {action} issue #{oid}: {title}\n"
|
body = f"[{project}] {username} {action} issue #{oid}: {title}\n"
|
||||||
if action in ["open", "reopen"]:
|
if action in ["open", "reopen"]:
|
||||||
body += f"{description}"
|
body += f"{description}"
|
||||||
|
elif action == "update":
|
||||||
|
return
|
||||||
|
|
||||||
logging.debug(body)
|
logging.debug(body)
|
||||||
mb_url = config["gitlab_gateway"]
|
mb_url = config["gitlab_gateway"]
|
||||||
|
|
Reference in a new issue