我编写了一个 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"
}
}
阶段('MSTEAMS'){
脚步 {
office365Connector发送 webhookUrl: 'https://orosoft.webhook.office.com/webhookb////xxxxxxxxxxxxx',
信息:”””
""",
颜色:'#0000FF'
}
}
首先尝试这个简单的语法。