Email integration match
I need to do something like the following
when <any>
for each string in Job Number
if (issue.summary.contains(Job Number))
Place in comment
when <any>
for each string in Job Number
if (issue.summary.contains(Job Number))
Place in comment
Please sign in to leave a comment.
rule match when <issue created or updated> { for each string in Bound to Release { if (summary.contains(string, opts)) { <define statements> } } }See also https://confluence.jetbrains.com/display/YTD6/Workflow+Language+Quick+Reference