From 44ccc9327c602f185eccb63dc6eee7d42f9eee42 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sat, 20 Aug 2022 07:23:16 -0700 Subject: [PATCH] skip gitlab issue update action --- webhooks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webhooks.py b/webhooks.py index 3caf0a1..ab31588 100644 --- a/webhooks.py +++ b/webhooks.py @@ -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"]