Create one email notification on several builds
Hi!
We have several build configurations.
There is one, which depends on other and deploy all artifacts of previous builds (if there are no errors and all dependencies have been resolved).
This build configuration sends notifications to testers, etc.
How can I add changes of other builds to this notification?
Please sign in to leave a comment.
Hi
It's not supported directly yet, you can vote for TW-3883.
Here is a possible workaround: http://devnet.jetbrains.net/message/5281260#5281260
Michael
To resolve the problem above I have written in build_successful.ftl
<#list project.buildTypes as bt>
${bt.lastChangesStartedBuild.getBuildNumber() }
<#list bt.lastChangesStartedBuild.revisions as rev>
${rev}
</#list>
</#list>
So I can access all build numbers and roots of all build configurations I need.
Can you help me to access last comments of every build configuration?
If it is possible - problem will be solved.