Update Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 18:39:42 -04:00 committed by GitHub
parent 3854cc4003
commit 9142054085
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

@ -30,6 +30,11 @@ pipeline {
echo 'Deploy' echo 'Deploy'
} }
} }
} }
post {
success {
slackSend channel: '#noti',
color: 'good',
message: "The pipeline ${currentBuild.fullDisplayName} completed successfully."
}
} }