diff options
| author | 2020-01-05 23:20:08 +0000 | |
|---|---|---|
| committer | 2020-01-05 23:20:08 +0000 | |
| commit | 08162f8505e3ba2c0680d46dbb4cb0dfe464bb70 (patch) | |
| tree | 342c31469bf232dc0ef728499fb5382cc64e465b /modules/git_webhooks | |
| parent | sort variable $names descending so longer ones are caught first (diff) | |
| signature | ||
show issues/transferred by default for github webhooks
Diffstat (limited to 'modules/git_webhooks')
| -rw-r--r-- | modules/git_webhooks/github.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/git_webhooks/github.py b/modules/git_webhooks/github.py index 20a3fb74..96dc26c3 100644 --- a/modules/git_webhooks/github.py +++ b/modules/git_webhooks/github.py @@ -39,12 +39,14 @@ EVENT_CATEGORIES = { "pull_request_review_comment/deleted" ], "issue-minimal": [ - "issues/opened", "issues/closed", "issues/reopened", "issues/deleted" + "issues/opened", "issues/closed", "issues/reopened", "issues/deleted", + "issues/transferred" ], "issue": [ "issues/opened", "issues/closed", "issues/reopened", "issues/deleted", "issues/edited", "issues/assigned", "issues/unassigned", - "issues/locked", "issues/unlocked", "issue_comment" + "issues/locked", "issues/unlocked", "issues/transferred", + "issue_comment", ], "issue-all": [ "issues", "issue_comment" |
