/
Validators & Conditions Module
Validators & Conditions Module
Users can implement custom logic in Jira workflows by utilizing Jira Expressions for validators and conditions.
Here are some examples of how users can customize Jira workflow validators and conditions using Jira expressions:
Ensure that the summary contains the text "Jira" while creating an issue:
issue.summary.match("Jira") != null (Validator): This expression ensures that an issue cannot create unless summary contains the text "Jira".
Ensure issue comment field has at least one comment: issue.comments.length > 0 (Condition)
This expression ensures that an issue cannot transition to pending unless it has at least one comment.
, multiple selections available,
Related content
Configure Expressions
Configure Expressions
More like this
Configure RegEx Custom Field
Configure RegEx Custom Field
Read with this
Getting started - Expressions for Jira
Getting started - Expressions for Jira
More like this
Configure Expressions Text Custom Field
Configure Expressions Text Custom Field
Read with this
Expressions for Jira - Documentation space
Expressions for Jira - Documentation space
More like this
Custom Field Types
Custom Field Types
Read with this