Info | ||
---|---|---|
| ||
This feature is available for the Jira server deployment option only. We plan to add it to the Cloud version in the near future. |
Conditions control who can perform a transition and the circumstances under which they can perform this transition. If any part of a transition's condition fails, the user will not see the transition link on the 'view issue' page.
You can use Power Scripts Scripts™ for Jira and SIL SIL™ to define a large set of conditions beside Jira's built-in conditions, by just adding a (k) SIL SIL™ Condition to the transition and publishing the workflow, as described here.
Below are just a few The following common examples explain this feature:
Table of Contents |
---|
Info | ||
---|---|---|
| ||
Power Scripts Scripts™ for Jira (server) Level: BASIC |
Previous status
A workflow condition that allows enables you to disable a particular transition if the current issue has never been in a specific status:
...
Code Block |
---|
string[] subtasks = subtasks(key); for(string subtask in subtasks) { if(%subtask%.status != "Resolved" || %subtask%.resolution != "Fixed") { return false; } } |