...
You can use Power Scripts for JIRA and Jira and SIL to define a large set of conditions beside Jira's built-in conditions, by just adding a (k) SIL Condition to the transition and publishing the workflow, as described here.
...
Info | ||
---|---|---|
| ||
You will need the following JIRA pluginJira app: Level: BASIC |
Previous status
...
More useful date routines can be found in the Date Routines section.
Compare two parsed texts
A SIL condition which checks if description contains summary:
...
Where customfield_11300 and customfield_11301 are JIRA Jira custom fields of type numeric.
...
The transition won't be shown unless all sub-tasks are resolved. You can also specify a particular resolution that the sub-tasks must be in (in our example Fixed):
Code Block |
---|
string[] subtasks = subtasks(key); for(string subtask in subtasks) { if(%subtask%.status != "Resolved" || %subtask%.resolution != "Fixed") { return false; } } |
...