I think I need to create an scheduled rule that checks daily if a ticket's Due Date is near, and then send a notification to the Assignee if it's within range.
Problem is, I'm not very well versed in JQL and I'd like to learn how to write this query in it. Thanks!
It needs to notify the assignee if their due date is less than 4 days away, and/or when it's overdue.
If (DueDate - TodaysDate) < 4, then notify Assignee
Hi Hunter,
You can set this up by creating a JQL filter and then setting up a subscription for the group that needs to be notified.
Here's the JQL you could use:
duedate <4d and duedate > 0d and assignee = currentUser()
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.
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.