From 700fbf55a26a4e34e3e9d7200ac2de4e544d6daf Mon Sep 17 00:00:00 2001 From: Bjoern Petri Date: Tue, 17 Sep 2019 12:14:01 +0200 Subject: [PATCH] MS Teams webhook misses commit messages The current webhook just shows the amount of commits, but misses the actual commit description. While the code is actually there to include the description, it is just not included. Signed-off-by: Bjoern Petri --- models/webhook_msteams.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/webhook_msteams.go b/models/webhook_msteams.go index f42defbd1af7..bdbcdbc9d361 100644 --- a/models/webhook_msteams.go +++ b/models/webhook_msteams.go @@ -236,6 +236,7 @@ func getMSTeamsPushPayload(p *api.PushPayload) (*MSTeamsPayload, error) { ActivityTitle: p.Sender.FullName, ActivitySubtitle: p.Sender.UserName, ActivityImage: p.Sender.AvatarURL, + Text: text, Facts: []MSTeamsFact{ { Name: "Repository:",