如何向 MS Teams 发送 Jenkins 构建通知

问题描述 投票:0回答:1

我编写了一个 Jenkins 管道作业来构建和推送图像,并希望在 MS-Teams 中使用

build details
tags
committers
获取构建通知;但我无法向 MS-Teams 发送通知。

以下是我尝试过的:

stage('MSTEAMS') {     
            steps {
                office365ConnectorSend webhookUrl: "https://orosoft.webhook.office.com/webhookb////xxxxxxxxxxxxx",
                message: "The Build has been completed, here is the image URL>>> 123456.dkr.ecr.ap-south-1.amazonaws.com/${REPO}:${TAG}",
                status: "Success",
                color: "00ff00"
            }
        }
jenkins groovy devops pipeline microsoft-teams
1个回答
0
投票

阶段('MSTEAMS'){
脚步 { office365Connector发送 webhookUrl: 'https://orosoft.webhook.office.com/webhookb////xxxxxxxxxxxxx', 信息:””” """, 颜色:'#0000FF' } }

首先尝试这个简单的语法。

© www.soinside.com 2019 - 2024. All rights reserved.