aboutsummaryrefslogtreecommitdiff
path: root/modules/git_webhooks/gitlab.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-15 16:20:41 +0100
committerGravatar jesopo2019-10-15 16:20:41 +0100
commit491ad531c2efe30ddb766d57c0a931befc6ca838 (patch)
tree646a596d328d838592ec71b162fb36cdeb985c53 /modules/git_webhooks/gitlab.py
parentremove debug prints from IRCBot (diff)
signature
mapped event names for gitlab webhooks should be 'issue' not 'issues'
Diffstat (limited to 'modules/git_webhooks/gitlab.py')
-rw-r--r--modules/git_webhooks/gitlab.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/git_webhooks/gitlab.py b/modules/git_webhooks/gitlab.py
index 7e031bdf..5902c6ed 100644
--- a/modules/git_webhooks/gitlab.py
+++ b/modules/git_webhooks/gitlab.py
@@ -16,14 +16,14 @@ EVENT_CATEGORIES = {
],
"pr-all": ["pull_request"],
"issue-minimal": [
- "issues/opened", "issues/closed", "issues/reopened", "issues/deleted"
+ "issue/opened", "issue/closed", "issue/reopened", "issue/deleted"
],
"issue": [
- "issues/opened", "issues/closed", "issues/reopened", "issues/deleted",
- "issues/edited", "issues/assigned", "issues/unassigned", "issue_comment"
+ "issue/opened", "issue/closed", "issue/reopened", "issue/deleted",
+ "issue/edited", "issue/assigned", "issue/unassigned", "issue_comment"
],
"issue-all": [
- "issues", "issue_comment"
+ "issue", "issue_comment"
],
"issue-comment-minimal": [
"issue_comment/created", "issue_comment/deleted"