...
When using this workflow condition, configuered transition will only be available depending on the evaluation of a given Groovy script.
To add '
...
Groovy script condition' to a transition:
- Click Edit for the workflow that has the transition you wish to add the condition on.
- In the Workflow Designer, select the transition.
- Click on
Condition
in the properties panel. - Click on
Add
condition
. - Select
Groovy Script condition
from the list of conditions. - Click on
Add
to add the condition on the transition. - Fill the form shown below and press 'Add' button.
Fields
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.
Specs
- Script condition accepts groovy scripts. Return
true
to indicate a passed condition orfalse
otherwise. - You can user
ComponentAccessor
to access Managers and other useful classes. - You can user
issue
to access the current Issue in condition. - You can user user to access the current ApplicationUser in condition.
- You can try your script against any issue using the test button.
Script samples
This sample condition checks if the issue has at least one comment.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
def reporterEmailAddress = issue.getReporter()?.getEmailAddress(); if (reporterEmailAddress != null){ log.warn("Reporter email address {}", reporterEmailAddress); return reporterEmailAddress.endsWith("@gmail.com"); } return false; |
...