Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
titleRequired plugins

You will need the following JIRA pluginJira app:

  1. Power Scripts for JIRA (former JJUPIN)Jira

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;
    }
}

...