I'm trying to set up a condition like, "Is one of", "Is contained in"... but there isn't a selection on the dropdown for this:
Your user custom field is a list, and so the parsing may not be correct for that advanced compare condition of "contains". Perhaps take a look at the example in the documentation for testing the Components field: https://support.atlassian.com/cloud-automation/docs/jira-automation-conditions/#Advanced-compare-condition
And if you modify the second value field and use Contains Regular Expression:
({{#issue."Tested & Accepted By (Jira User)"}}{{displayName}}{{^last}}|{{/}}{{/}})
This will split your custom field names into a list delimited by the pipe character to work as a regular expression of possible values. Note: please check if I correctly typed your custom field name.
Kind regards,
Bill
Hi @Michael Davison ,
Could you try to recreate the condition via JQL instead?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes! I can use "IN" for "Is contained in"
And then "~" for Contains...
Thanks so much. I knew I was missing something. Thanks Sam.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.