JIRA : Would like for an alert to go out 24 hours before the due date, to both the reporter and the assignee

Jijo John [DevOps Consultant] January 27, 2015

Would like for an alert to go out 24 hours before the due date, to both the reporter and the assignee. What is the best approach to achieve this and want to sent message ->

 

The due date for this work is within the next 24 hours. If you feel the work will not be complete during that time frame, please contact the reporter immediately.

2 answers

2 accepted

1 vote
Answer accepted
Renjith Pillai
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 23, 2015
Do this:
  1. Use the following JQL and save it as a filter:
    1. dueDate due <= 1d and (assignee = currentUser() or reporter = currentUser())
  2. In the filter description use the text that you mentioned in your question so that the email will include that
  3. Create a group subscription (select a group while creating the subscription)
1 vote
Answer accepted
rambabu patina
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 27, 2015

Hi John,

 

You can create a filter to get this result and subscribe it to mail.
https://confluence.atlassian.com/display/JIRA/Receiving+Search+Results+via+Email
The filter will have JQL similar to this:

issuetype = "Task" and Status in ("Open", "In Progress") and duedate >= +1d

For Past Due:

issuetype = "Task" and Status in ("Open", "In Progress") and duedate >= now()

Note: You will have ask everyone to subscribe. You can't send it to assignee alone.

Actually, you can create a filter which includes assignee = currentUser() and share it with users. Then ask them to subscribe.

 

Thanks,

Patina

Suggest an answer

Log in or Sign up to answer