Versions Compared

Key

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

...

Code Block
titleCondition on non-linked issue
//Condition on non-linked issue

if(isNull(getLinkedIssues(key)) || size(linkedIssues(key))==0) {
   return true;
}
return false;

Condition based on mathematical expression

A workflow condition that allows you to disable a particular transition when the mathematical expression calculated does not accomplish the script condition:

...

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:

 

Code Block
titleSIL Code
return description.contains(summary);

Except assignee Condition

...