From 863e5a7d4e6c454f4dd7bcd5efa74fedf96ba0d1 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 21 Feb 2013 14:33:02 -0500 Subject: [PATCH] git: Put prod back on the list of branches to send notices about. (imported from commit e608d7050b4e68045b03341dc41e8654e45a3af3) --- bots/humbug_git_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/humbug_git_config.py b/bots/humbug_git_config.py index 1ab0c6c..869a31c 100644 --- a/bots/humbug_git_config.py +++ b/bots/humbug_git_config.py @@ -23,7 +23,7 @@ HUMBUG_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" # * subject "deploy => master" (using a pretty unicode right arrow) # And similarly for branch "test-post-receive" (for use when testing). def commit_notice_destination(repo, branch, commit): - if branch in ["master", "post-receive-test"]: + if branch in ["master", "prod", "post-receive-test"]: return dict(stream = "commits", subject = u"deploy \u21D2 %s" % (branch,))