@Jeevan Kumar K G I'm pretty sure most of these automations can be accomplished with a few adjustments by using the Automation Templates. Go into your Project Settings / Automations and then click on the 'Templates' tab. For example look at the 'Prompt customer for comment', this could be adjusted for #3 & #4.
For #1, I don't know how to have it actually check for the 4 hours, but you could run an automation every morning and every afternoon to do a sweep.
I'm not sure on #2,
I'm no Automation expert, but I think that will get you close. Hope that helps.
1. Send a notification if a ticket remains unassigned for more than 4 hours.
Create a New Rule:
Define the Condition:
created <= -4h AND assignee = Unassigned
Define the Action:
Activate the Rule:
2. Notify when any new tickets are assigned to respective group members based on the client selected under the client field , including the assignee, rather than only sending it to the assignee.
Create a New Rule:
Define the Condition:
Client = "YourClientName"
Define the Action:
{{issue.assignee.emailAddress}}, {{group('jira-software-users').emailAddress}}
Activate the Rule:
3. Send notifications if the due date has passed and the ticket is still in progress or in the to-do status.
Create a New Rule:
Define the Condition:
status IN ("In Progress", "To Do") AND duedate < now()
Define the Action:
Activate the Rule:
4. Notify if there have been no updates for more than 4 days for any tickets in the to-do, in progress, or in review statuses.
Create a New Rule:
Define the Condition:
status IN ("To Do", "In Progress", "In Review") AND updated <= -4d
Define the Action:
Activate the Rule:
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.
@Collista Lewingdon @Bill Sheboy @Dan Breyen I have created flow like these and any suggestion this or any correction please
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What have you done thus far to try to solve these needs?
If you have started automation rules and they are not working as expected, please post images of your rule, the audit log details, and explain what does not work as you expected. That will provide context for the community to offer suggestions.
If you have not started any rules yet, please note using rules successfully requires learning and experimentation. This community is for people with similar interests to share information, ask questions, and learn from one another. This is not a free labor pool to implement automation rules upon request. And if you only use rules provided by others without understanding them, you will not be able to maintain or fix them in the future.
I recommend looking at the template rules and examples, as suggested by @Dan Breyen and try to create one of the rules needed. Test it, and improve it as you work. Then repeat that with the next rule. If you run into challenges, post images of your rule with your questions so the community can help.
To get you started on creating your rule, please refer to these documentation and example sources:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.