a question about the pre-send script possibility of email-ext: At the moment, this is the "Default Content" of the Email Notification:
<h3>$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS</h3>
<p>
Check console output at $BUILD_URL/console to view the results.
</p>
...
<hr/>
<b>Changes since last build</b><br/>
<div style="padding-left: 15px; padding-bottom: 15px;">
${CHANGES,format="<div><b>%a</b></div><div style=\"padding-left:30px;\"> — “<em>%m</em>”</div><br/>"}
</div>
This will include the commit messages in the result email... and as we are giving the Jira issue id with every commit, it would be nice to replace the Jira issue id, e.g. TESTPROJECT-1234 with a link to it.
Can somebody help me, to achieve this behavior? The best way to do this is to use a regex, right? like
(TESTPROJECT-[1-9][0-9]*)
and replace it with
<a href="http://jira.server.com/browse/$1">$1</a>
But at the moment I have no glue, how to use groovy and the pre-send script to do this. :(
You don't even need regular expression. See this script example: https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/resources/hudson/plugins/emailext/templates/groovy-html.template that shows you how to loop over your changeset.