Could you please help me with this issue?
Ticket created: Summary name: "ABC with bugs LOW task"
What automation step can I do to so that I can set the above Ticket`s priority to LOW?
So whenever the above ticket is created, I want the priority to be LOW right away.
Hi @Sohail Alam ,
You can use the match() function https://support.atlassian.com/cloud-automation/docs/jira-smart-values-text-fields/#match--
In the actions select "Edit Issues" action, and you can set the value using,
{{issue.summary.match("(Low)|(High)|(Medium)")}}
Although I would agree with @Trudy Claspill you might want to rethink the strategy prior to activating such an automation, since it maybe prone to errors.
Thank you Jehan but need a small help here. So If I add that issue.summary.match, then what would be the next step? Help is highly appreciated
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Sohail Alam there are a few different ways I can think of here.
In theory, you can create a Smart Value variable (from the actions), and based on this value create an if else loop.
If smartValue == Low then Priority Low
ElseIf smartValue == Medium then priority Medium
Else Priority=High
Try this out once and let me know if it works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Sohail Alam
How do you know you want to set that specific issue to Low priority?
Is that decision based on the issue type?
Is that decision based on keywords in the Summary field, or an exact phrase in the Summary field?
Is it not an acceptable solution to manually set the Priority of the issue as you create it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, this ticket is generated from App Support which puts tickets priority in Ticket Summary and instead of doing manual work was thinking about Automation rule @Trudy Claspill
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.