Update Jenkinsfile

This commit is contained in:
Muneeb Nezameddin 2020-03-16 05:23:02 -04:00 committed by GitHub
parent 5f8b68e9fa
commit c93e55913f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -26,14 +26,14 @@ pipeline {
success {
mail (
to: "mnezam.31@gmail.com",
subject: "Successful Build",
subject: "Successful Build ${currentBuild.fullDisplayName}",
body: "Build successful with the following ${env.BUILD_URL}"
)
}
failure {
mail (
to: "mnezam.31@gmail.com",
subject: "Build Failure",
subject: "Build Failure ${currentBuild.fullDisplayName}",
body: "Build Failure has occured with the following ${env.BUILD_URL}"
)
}