Section | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Jira expressions in JMWE for JIRA Cloud
Jira expressions in JMWE for Jira Cloud are used to insert information in
- Linked Issues Condition and Linked Issues Validator to check on each linked issue
- Build-your-own (scripted) Condition and Build-your-own (scripted) Validator to input a Jira expression to be evaluated
- Validator scope to control the execution of the validator in Linked Issues Validator and Linked Issues Status Validator
You can insert issue, transition and current user information into the conditions using Jira expressions.
Scripting features in Jira expressions
...
Limitations of Jira expressions
Jira Cloud enforces the following stringent limitations while using Jira expressions. This section explains them in context to JMWE. For more information, see the official Jira expressions documentation.
- The expression's length is limited to 1,000 characters or 100 syntactic elements.
Limitations inside the Jira expressions written by users: The expression can execute at most 10 expensive operations (expensive operations are those that load additional data, such as entity properties, comments, or custom fields). For example, A condition that checks for a version
1.0
on every issue linked to the current issue.Code Block issue.links.every(link => link.outwardIssue.versions.every(ver => (ver.name == "1.0")))
linkedIssue.customfield_10401Code Block Evaluation will fail if there are more than 10 linked issues.
No error reporting: If a Jira expression evaluation returns an error, the error is not reported/logged anywhere. Since any non-boolean value, including an error, will be considered as
false
the condition will fail. However, you can see the error when you test the Jira expression against an issue in the Jira expressions editor. For example: When you write a condition to check that the linked issue has the multi-select custom field has the value "Database" selected:.
any(it => it.value == "Database")the condition when tested will return the following error:
You need to instead use the "some" property to check that the specific value is selected.
linkedIssue.customfield_10401.some(it => it.value == "Database")Code Block