On this page



Use case

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.


Configuration


Jira expression*

issue.status.name == "To Do"

This expression checks whether the current issue status is



Variations

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

Jira expression*

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

The current issue status has to be either or


Jira expression*

issue.status.name != "Done"

The current issue status must not be






Related examples




JWT feature

Workflow function

Jira expression condition

Jira expression validator

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