Executes a groovy script in the Hudson JVM. Typically, the script checks some conditions and changes accordingly the build result and/or puts badges next to the build in the build history.
The groovy script can use the variable manager, which provides access to the following objects and methods: Example:
    if(manager.logContains(".*uses or overrides a deprecated API.*")) {
      manager.addWarningBadge("Thou shalt not use deprecated methods.")
      manager.buildUnstable()
    }