diff options
Diffstat (limited to 'app/blueprints/gitlab/__init__.py')
-rw-r--r-- | app/blueprints/gitlab/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/blueprints/gitlab/__init__.py b/app/blueprints/gitlab/__init__.py index daddc1e..45b4aa5 100644 --- a/app/blueprints/gitlab/__init__.py +++ b/app/blueprints/gitlab/__init__.py @@ -54,8 +54,11 @@ def webhook(): if event == "push": ref = json["after"] title = ref[:5] + elif event == "tag_push": + ref = json["ref"] + title = ref.replace("refs/tags/", "") else: - return error(400, "Unsupported event. Only 'push' is supported.") + return error(400, "Unsupported event. Only 'push' and 'tag_push' are supported.") # # Perform release |