Hello,
I am trying to test out automation that uses the condition of whether the the Initiator is in Request Participants OR if the Initiator is the Reporter
So one would think this would do the trick:
"Request participants" in ({{initiator.accountId}}) OR {{initiator.accountId}} = {{issue.reporter.accountId}}
The request participants part works fine but I can not find a way to make the reporter part work and I have tried every possible permutation I can think of, e.g.
{{initiator.accountId}} = {{issue.reporter.accountId}}
{{initiator}} = {{issue.reporter}}
{{initiator}} = reporter
{{initiator.emailAddress}} = {{issue.reporter.emailAddress}}
{{initiator.displayName}} = {{issue.reporter.displayName}}
and others I can't remember to list, and also tried with "is" instead of "="
Funnily enough, the AccountId and DisplayName and EmailAddress ones give the error with the correct comparison in text form in the audit but i guess the underlying data formats just doesn't allow the comparison?
No subsequent actions were performed since JQL condition did not pass due to error running JQL:
Invalid JQL: myaccountidstring = myaccountidstring
Does anyone know how to make this work?