Jenkins file notification email title improvement Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/21d1bfb5 Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/21d1bfb5 Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/21d1bfb5
Branch: refs/heads/MNG-5958-IT Commit: 21d1bfb5a08ecf67a10b88a6fdbda98e7361376b Parents: 94bc4de Author: Hervé Boutemy <hbout...@apache.org> Authored: Mon Jan 23 23:11:22 2017 +0100 Committer: Hervé Boutemy <hbout...@apache.org> Committed: Tue Jan 24 18:40:07 2017 +0100 ---------------------------------------------------------------------- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/21d1bfb5/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 07ce2e6..5b82d78 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -131,7 +131,7 @@ parallel linuxJava7:{ } } finally { node('ubuntu') { - emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'd...@maven.apache.org', subject: "Maven Jenkinsfile finished with ${currentBuild.result}", to: 'notificati...@maven.apache.org' + emailext body: "See ${env.BUILD_URL}", recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'FailingTestSuspectsRecipientProvider'], [$class: 'FirstFailingBuildSuspectsRecipientProvider']], replyTo: 'd...@maven.apache.org', subject: "${env.JOB_NAME} - build ${env.BUILD_DISPLAY_NAME} - ${currentBuild.result}", to: 'notificati...@maven.apache.org' } }