I am using email-ext plugin to trigger emails after the build fails or become unstable. The build becomes unstable when some of the tests fail and the build fails when the compilation fail.Can we use conditions to display different customized subject depending on the cause of the email trigger?
--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/78afab09-7faa-4721-98f7-54501aa6f9a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
def subject = 'Some Subject'
if(build.result == Result.SUCCESS) {
subject += ' - Build Succeeded!'
}
subject // required so that this is "returned" from the script
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/db0054b6-eeb0-49e6-8aa5-2677d1048c3c%40googlegroups.com.