浏览代码

MS Teams webhook misses commit messages (#8209)

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 <bjoern.petri@sundevil.de>
tags/v1.10.0-rc1
Bjoern Petri 4 年前
父节点
当前提交
99f3ee3bf3
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      models/webhook_msteams.go

+ 1
- 0
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:",

正在加载...
取消
保存