|
|
@ -117,7 +117,7 @@ func (f *WechatworkPayload) Push(p *api.PushPayload) (api.Payloader, error) { |
|
|
|
func (f *WechatworkPayload) Issue(p *api.IssuePayload) (api.Payloader, error) { |
|
|
|
func (f *WechatworkPayload) Issue(p *api.IssuePayload) (api.Payloader, error) { |
|
|
|
text, issueTitle, attachmentText, _ := getIssuesPayloadInfo(p, noneLinkFormatter, true) |
|
|
|
text, issueTitle, attachmentText, _ := getIssuesPayloadInfo(p, noneLinkFormatter, true) |
|
|
|
var content string |
|
|
|
var content string |
|
|
|
content += fmt.Sprintf(" ><font color=\"info\">%s</font>\n >%s \n ><font color=\"warning\"> %s</font>", text, attachmentText, issueTitle) |
|
|
|
content += fmt.Sprintf(" ><font color=\"info\">%s</font>\n >%s \n ><font color=\"warning\"> %s</font> \n [%s](%s)", text, attachmentText, issueTitle, p.Issue.HTMLURL, p.Issue.HTMLURL) |
|
|
|
|
|
|
|
|
|
|
|
return newWechatworkMarkdownPayload(content), nil |
|
|
|
return newWechatworkMarkdownPayload(content), nil |
|
|
|
|
|
|
|
|
|
|
@ -127,7 +127,7 @@ func (f *WechatworkPayload) Issue(p *api.IssuePayload) (api.Payloader, error) { |
|
|
|
func (f *WechatworkPayload) IssueComment(p *api.IssueCommentPayload) (api.Payloader, error) { |
|
|
|
func (f *WechatworkPayload) IssueComment(p *api.IssueCommentPayload) (api.Payloader, error) { |
|
|
|
text, issueTitle, _ := getIssueCommentPayloadInfo(p, noneLinkFormatter, true) |
|
|
|
text, issueTitle, _ := getIssueCommentPayloadInfo(p, noneLinkFormatter, true) |
|
|
|
var content string |
|
|
|
var content string |
|
|
|
content += fmt.Sprintf(" ><font color=\"info\">%s</font>\n >%s \n ><font color=\"warning\">%s</font>", text, p.Comment.Body, issueTitle) |
|
|
|
content += fmt.Sprintf(" ><font color=\"info\">%s</font>\n >%s \n ><font color=\"warning\">%s</font> \n [%s](%s)", text, p.Comment.Body, issueTitle, p.Comment.HTMLURL, p.Comment.HTMLURL) |
|
|
|
|
|
|
|
|
|
|
|
return newWechatworkMarkdownPayload(content), nil |
|
|
|
return newWechatworkMarkdownPayload(content), nil |
|
|
|
|
|
|
|
|
|
|
|