aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py28
1 files changed, 21 insertions, 7 deletions
diff --git a/modules/github.py b/modules/github.py
index 0d2688cf..ba00e821 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -14,13 +14,27 @@ DEFAULT_EVENT_CATEGORIES = [
"ping", "code", "pr", "issue", "repo"
]
EVENT_CATEGORIES = {
- "ping": ["ping"],
- "code": ["push", "commit_comment"],
- "pr": ["pull_request", "pull_request_review",
- "pull_request_review_commend"],
- "issue": ["issues", "issue_comment"],
- "repo": ["create", "delete", "release", "fork"],
- "team": ["membership"]
+ "ping": [
+ "ping" # new webhook received
+ ],
+ "code": [
+ "push", "commit_comment"
+ ],
+ "pr": [
+ "pull_request", "pull_request_review", "pull_request_review_commend"
+ ],
+ "issue": [
+ "issues", "issue_comment"
+ ],
+ "repo": [
+ "create", # a repository, branch or tage has been created
+ "delete", # same as above but deleted
+ "release",
+ "fork"
+ ],
+ "team": [
+ "membership"
+ ]
}
COMMENT_ACTIONS = {