Hi All.
I would like your assistance please.
On JIRA, there's a Due Date field, I would like to know if there's a way I can send notifications to certain people before and after the due date?.
For example, if an issue's due date is "Tomorrow", certain people need to be notified and also if the issue's due date has passed, certain people need to be notified.
Your Assistance would be highly appreciated.
due < endOfDay("+1d") AND statusCategory != Done AND assignee = currentUser()
This filter will return due by tomorrow open Jira issues assigned to a user who opens the filter.
Create a Jira user group for those "certain people" and subscribe them on your filter to be emailed periodically. Make sure you do not send emails if the filter returns no issue.
Hi @Andile Luvuno,
A good way to deal with this, is through a filter subscription.
The following filters may give you a list of issues with due date tomorrow or overdue:
Project = X AND due >= StartOfDay(1) AND due <= EndOfDay(1)
Project = X AND due < StartOfDay AND Resolution = Unresolved
With a group filter subscription you can target a predefined set of users to be notified. Or if you add the following:
... AND Assignee = CurrentUser()
you can even target the filter to return just the issues where the recipient of the filter is that specific person.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can the automation handle this instead of the filter query?
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.