The text for the comment to send to YouTrack for linking back to this build. It defaults to the URL for the build and the revision id(s) for the change(s). Setting a text here overrides that.
The text is interpreted by the Groovy SimpleTemplateEngine, see http://groovy.codehaus.org/api/groovy/text/SimpleTemplateEngine.html .
There are two variables available: build and entries, where build is an object of type hudson.model.AbstractBuild
and entries is a list of hudson.scm.ChangeLogSet.Entry
objects. Therefore a template can be something like:
Related build: $build.absoluteUrl<% entries.each { %> [Change: ${it.commitId}|http://sourcecodebrowser?change=${it.commitId}] <% } %>