Hi,
I am having trouble getting my head around how to get this automated.
I want to check if the last comment email is in a custom field list.
I can get the last comment email and I can get the custom field list emails.
I just can't get it to iterate through the list and say yes, it is in the list.
Hope it makes sense.
Hi @Jacob
Where are you trying to perform this test: in an automation rule, somewhere else?
If in an automation rule, you could probably do this test with either an advanced compare condition or with a regular expression and a match() function.
Kind regards,
Bill
Hi @Bill Sheboy
Yes, it is part of an automation rule.
Tried using the advanced compare condition which works if there is only one email in the field. My issue is when there are multiple emails.
Tried the following:
In my custom field I have 2 users assigned.
One of them are the last commenter.
When running below command I just get false false but should be false true
{{#issue.customfield_10027}}{{emailAddress.equalsIgnoreCase(issue.comments.last.author.emailAddress)}} {{/}}
Any help?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also tried the match function which returns nothing
{{issue.customfield_10027.emailAddress.match(".*(issue.comments.last.author.emailAddress).*")}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Once you are inside of an iterator, it can only "see" that scope (and lower). Thus the issue is no longer visible in the example from your earlier post.
Your custom field is a list of zero-to-many values, and so using match() alone may not work. Let's try merging the values into a single text string first and then search:
{{issue.customfield_10027.emailAddress.join(",").match(".*(issue.comments.last.author.emailAddress).*")}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.