fix email notyfication
All checks were successful
s426206-training/pipeline/head This commit looks good

This commit is contained in:
Jan Nowak 2021-05-07 23:06:24 +02:00
parent 2ea6de0929
commit 6b3fcf4b8d

View File

@ -42,22 +42,22 @@ pipeline {
}
}
post {
success {
//Wysłanie maila
emailext body: 'SUCCESS',
subject: 's426206',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
unstable {
emailext body: 'UNSTABLE', subject: 's426206', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
emailext body: 'FAILURE', subject: 's426206', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
changed {
emailext body: 'CHANGED', subject: 's426206', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
post {
success {
//Wysłanie maila
emailext body: 'SUCCESS',
subject: 's426206',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
unstable {
emailext body: 'UNSTABLE', subject: 's426206', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
emailext body: 'FAILURE', subject: 's426206', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
changed {
emailext body: 'CHANGED', subject: 's426206', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}