Merge pull request #295 from sartography/ci/notify-discord-for-all-builds
ci: sent Discord notifications for all builds
This commit is contained in:
commit
c95f602cfc
|
@ -83,10 +83,11 @@ pipeline {
|
|||
}
|
||||
} }
|
||||
post {
|
||||
success { script {
|
||||
always { script {
|
||||
if (params.DISCORD_WEBHOOK_CRED) {
|
||||
def result = currentBuild.result.toLowerCase() ?: 'unknown'
|
||||
discordNotify(
|
||||
header: 'SpiffWorkflow Docker image published!',
|
||||
header: "SpiffWorkflow Docker image build ${result}!",
|
||||
cred: params.DISCORD_WEBHOOK_CRED,
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue