如果我有Jenkins ver,我可以在jenkins flow dsl中使用slackSend命令吗? 1.656。 我启用了Slack Notification Plugin,它在大多数情况下工作正常,但我希望在构建开始时显示消息。
答案 0 :(得分:1)
您可以在管道中设置脚本,应该是这样的:
def notify(status) {
slackSend channel: "#jenkins",
color: '#d71f85',
message: "${status}",
tokenCredentialId: 'yourtoken'
}
pipeline{
....
stages{
stage('Buildstart) {
steps {
notify("Build Started")
}
}
....
}
}