Skip to content
holzkohlengrill edited this page Dec 15, 2023 · 2 revisions

Jira

TODO: do some jira (automation) write-up TODO: default values -> in "Update orgiginal estimate"

The name of the does not contain operator is not really what it says. It matches from the beginning of the string. To really check for containment use regular expressions or use a wildcards with containment operator: description !~ '*keywordToMatch*' (the ticket description must not contain keywordToMatch).

Note that wildcards are not needed when using the containment operator: description ~ 'keywordToMAtch'.

Useful examples

(component in ('AWS') AND component in ('Azure')) OR (component in ('AWS') AND component in ('On-Prem')) OR (component in ('Azure') AND component in ('On-Prem'))

Smart values

{{issue.get("components").size()}}

Clone this wiki locally