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

Compare with Current View Page History

« Previous Version 33 Next »

On this page

Use case details
Function

Jira expression condition

Jira expression validator

Type

ConditionValidator

Use case description

Check whether the current issue is in a particular status.

This use case is valid for both conditions and validators. The only difference is that you can specify an additional error message when using a validator.

Complexity

BEGINNER



Configuration stepsConfiguration steps


Definition of basic (required) parameters

ParameterValue(s) / Steps to set value(s)Notes

Jira expression*

issue.status.name == "To Do"

This expression checks whether the current issue status is TO DO

Variations

You can easily modify this use case to include / exclude additional statuses.

ParameterValue(s) / Steps to set value(s)Notes

Jira expression*

issue.status.name == "To Do" || issue.status.name == "In Progress"

The current issue status has to be either  TO DO or IN PROGRESS


Jira expression*
issue.status.name != "Done"

The current issue status must not be  DONE



Related examples