Hello,
Trying to figure out a way to make an automation triggered by a new issue created to check the summary to contains and be able to check for multiple word variations?
Example; Summary: Apples are in market ---> I would like to check for Apples and a few variations ----> aapple, apple, applee
How can I add the above variations in the value field to have successful automation?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Wael your automation should look something like this:
You can add more patterns using https://regex101.com/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
FYI this is what I used:
(a|A)?apple(s|e)?
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.