From bd8a4cb4ab2639b26d3d4edeff20e13dcd772bb1 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Wed, 17 Oct 2012 00:02:27 -0400 Subject: [PATCH] post-receive: Use a different subject name for each push (imported from commit 983c34faa52bec9a7af4d26a326bbb8cc4a08bea) --- tools/post-receive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/post-receive b/tools/post-receive index 8cb71feeb9..40495933a2 100755 --- a/tools/post-receive +++ b/tools/post-receive @@ -76,7 +76,7 @@ def send_bot_message(oldrev, newrev, refname): message_data = { "type": "stream", "stream": "test" if refname == "refs/heads/test-post-receive" else "devel", - "subject": "commits", + "subject": "push-" + new_head, "content": message, "recipient": "tabbott@humbughq.com", }