E-Mail Notification typo

This commit is contained in:
Jürgen Edelbluth 2022-08-26 12:40:43 +02:00
parent 82584ab395
commit 8a55418bb3
Signed by: jed
GPG Key ID: 6DEAEDD5CDB646DF
1 changed files with 1 additions and 1 deletions

2
.ci/Jenkinsfile vendored
View File

@ -44,7 +44,7 @@ pipeline {
always {
withCredentials([string(credentialsId: 'jed-notification-email', variable: 'EMAIL')]) {
mail to: "${EMAIL}",
subject: "[${currentBuild.fullDisplayName}] Build #${currentBuild.number} :${currentBuild.currentResult}",
subject: "[${currentBuild.fullDisplayName}] Build #${currentBuild.number}: ${currentBuild.currentResult}",
body: "Duration: ${currentBuild.durationString} / Jenkins URL: ${env.BUILD_URL}"
}
}