嘿,我一直在尝试使用这样的 slacksend 在我的 jenkins 管道中使用我的构建数量发送消息
slackSend channel: 'developer-team', message: 'The unit tests have been successful for Build N°: ${currentBuild.number}'
但是我从 slack 得到的消息是这样的:
<块引用>Build N° 的单元测试已成功:${currentBuild.number}
我不知道如何修复以获得适当的消息
答案 0 :(得分:1)
试试这个:
slackSend channel: '#notification', color: 'good', message: "The unit tests have been successful for Build N°: ${env.BUILD_NUMBER}", teamDomain: 'testnotifgroup', tokenCredentialId: 'slack-token'
<块引用>
使用双引号 " " 来包装您的消息