Hi everybody,
I am looking to build an automation rule which triggers every time an issue is created where the condition is:
Summary starts with "Automatic reply" OR "Error message".
Is it somehow possible to do this in one rule or must I create a rule for each phrase?
Hi @Eiríkur Baldur Þorsteinsson
AFAIK, as https://jira.atlassian.com/browse/JRACLOUD-31066 is not there yet, summary starts with a phrase.
But if you are ok for summary contains, then you can use the JQL as condition for issue created event
summary ~ "Automatic reply" OR summary ~ "Error message"
Thank you @Fazila Ashraf
This is indeed disappointing and I agree with you that this seems like a basic requirement. I am surprised how primitive and limited automation conditions in Jira are in this regard.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Eiríkur Baldur Þorsteinsson , you could use the issue created trigger and tick the use JQL checkbox and use the below JQL. However, there is not a concept of identifying where a phrase is placed in the summary field, e.g. "starts with". So the rule would trigger anytime an issue is created that includes "Automatic reply" or "Error message" anywhere in Summary.
Summary ~ "Automatic reply" OR Summary ~"Error message"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @Jack Brickey
This is indeed disappointing and seems to me like a basic requirement. I am surprised how primitive and limited automation conditions in Jira are in this regard.
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.