diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-01-25 01:14:01 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-01-25 01:14:01 +0000 |
commit | f2799349ab135b80f7804a2a07edb1d64f0ef60f (patch) | |
tree | f54527a782f944e31290fdd39c0b1843993a4fd7 | |
parent | 1d223cc16f2611ea0269c4a5d025a617a176a64a (diff) | |
download | cheatdb-f2799349ab135b80f7804a2a07edb1d64f0ef60f.tar.xz |
Add tag push support to webhooks
-rw-r--r-- | app/blueprints/github/__init__.py | 7 | ||||
-rw-r--r-- | app/blueprints/gitlab/__init__.py | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/app/blueprints/github/__init__.py b/app/blueprints/github/__init__.py index e3ce8d7..8c6aaa8 100644 --- a/app/blueprints/github/__init__.py +++ b/app/blueprints/github/__init__.py @@ -123,12 +123,15 @@ def webhook(): event = request.headers.get("X-GitHub-Event") if event == "push": - title = json["head_commit"]["message"].partition("\n")[0] ref = json["after"] + title = json["head_commit"]["message"].partition("\n")[0] + elif event == "create" and json["ref_type"] == "tag": + ref = json["ref"] + title = ref elif event == "ping": return jsonify({ "success": True, "message": "Ping successful" }) else: - return error(400, "Unsupported event. Only 'push' and 'ping' are supported.") + return error(400, "Unsupported event. Only 'push', `create:tag`, and 'ping' are supported.") # # Perform release 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 |