The text for the comment to send to EasyQA 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 you enter is executed as a Groovy script

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:

    def result = ""
    result += "Related build: $build.absoluteUrl\n"
    entries.each {
        result += "[Change: ${it.commitId}|http://sourcecodebrowser?change=${it.commitId}]\n"
    }
    result