Hi,
Using Automation for Jira
- Trying to set up a rule with a condition of the comment-er is one of the users involved in the issue (anyone except an Agent)
Figured it out:
(reporter = "{{issue.comments.last.author.name}}") OR ("Request participants" in ("{{issue.comments.last.author.name}}"))
Similar to the other question on: Compare if lastCommentAuthor == Reporter
"Request participants" in ("{{issue.comments.last.author.name}}"
Shouldn't it be the other way around?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can't run it the other way around.
This
"{{issue.comments.last.author.name}}"
Gets replaced with
"foobar@baz.com"
So then you have invalid JQL if you do
"foobar@baz.com" in ​"Request participants"
Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'Request participants'. (line 1, character 22)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.