Skip to end of banner
Go to start of banner

Validators & Conditions Module

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 3 Current »

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:

  1. Ensure Summary has “Jira“ text while creating issue: issue.summary == “Jira“ (Validator)
    This expression ensures that an issue cannot create unless summary is equal to "Jira".

image-20241007-045149.png
  1. 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.

image-20241007-050252.png

  • No labels