...
Code Block | ||
---|---|---|
| ||
//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 | ||
---|---|---|
| ||
return description.contains(summary); |
Except assignee Condition
...