Buildbot: Enable github hook

This commit is contained in:
Mitchell Hashimoto 2011-11-12 13:14:16 -08:00
parent 49135dfd24
commit 5974fbcb16
2 changed files with 3 additions and 1 deletions

View File

@ -4,4 +4,5 @@ the build master.
"""
def get_change_sources():
# Currently no sources since we're using a GitHub hook
return []

View File

@ -25,7 +25,8 @@ def get_status(options):
web_status = html.WebStatus(
http_port = options.web_port,
authz = authz,
order_console_by_time = True
order_console_by_time = True,
change_hook_dialects=dict(github=True)
)
return [web_status]