Since version 1.1 |
When using this workflow condition, configuered transition will only be available depending on the evaluation of a given Groovy script.
Condition
in the properties panel.Add
condition
.Groovy Script condition
from the list of conditions.Add
to add the condition on the transition.Condition name – Name of the script condition. It will be used in the conditions view.
Groovy text editor – Use this editor to write the script.
true
to indicate a passed condition or false
otherwise.ComponentAccessor
to access Managers and other useful classes.issue
to access the current Issue in condition.This sample condition checks if the issue has at least one comment.
import com.atlassian.jira.issue.comments.CommentManager; def commentManager = ComponentAccessor.getCommentManager(); return !commentManager.getComments(issue).isEmpty(); |
This sample condition checks if the user that may transition the issue has an gmail address as their configured email address in Jira.
def reporterEmailAddress = issue.getReporter()?.getEmailAddress(); if (reporterEmailAddress != null){ log.warn("Reporter email address {}", reporterEmailAddress); return reporterEmailAddress.endsWith("@gmail.com"); } return false; |