From 694e98a1b06e5161cb5b7115b4593ed450f8f3b1 Mon Sep 17 00:00:00 2001 From: David Payne Date: Mon, 18 Apr 2016 13:58:51 -0700 Subject: [PATCH] Jira's "issue created" message should @-notify the assignee. --- integrations/jira/org/humbug/jira/ZulipListener.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/jira/org/humbug/jira/ZulipListener.groovy b/integrations/jira/org/humbug/jira/ZulipListener.groovy index 06a602e..9aa999b 100644 --- a/integrations/jira/org/humbug/jira/ZulipListener.groovy +++ b/integrations/jira/org/humbug/jira/ZulipListener.groovy @@ -67,7 +67,7 @@ class ZulipListener extends AbstractIssueEventListener { author, issueUrlMd, comment) break case ISSUE_CREATED_ID: - content = String.format("%s **created** %s priority %s, assigned to **%s**: \n\n> %s", + content = String.format("%s **created** %s priority %s, assigned to @**%s**: \n\n> %s", author, issueUrlMd, event.issue.priorityObject.name, assignee, title) break