Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions handlers/watchers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ def build_message(mentions):

class WatchersHandler(EventHandler):
def on_pr_opened(self, api, payload):
if "pull_request" not in payload:
return

user = payload['pull_request']['user']['login']

watchers = get_people_from_config(api, WATCHERS_CONFIG_FILE)
Expand Down
Loading