The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira - Story due date reminders for Sprint closing

Roberto L
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 Champions.
September 28, 2017

Hello Community,

I wanted to know if it was possible to send due date reminders or screen notification to a specific group in Jira when a Sprint is nearing the completion date and Stories inside the Sprint arent completed yet.

Any help would be greatly appreciated!

-Roberto

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Peter DeWitt
Community Champion
September 28, 2017

Roberto, I'm not sure if there's a way to send out reminders that tag off the sprint dates but if you are using the due date field in the issues themselves (bulk update for all sprint issues)  you could write a JQL query for issues due in x number of days and then subscribe the team to them.  This way they would get a reminder email.

 

-pd

Roberto L
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 Champions.
September 29, 2017

Hi @Peter DeWitt,

Would you be able to show me how such a JQL would look like?

-Roberto

Sebastian Kleinholz
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 Champions.
January 22, 2018
project = <project key> AND duedate >= <date of one day before sprint end> AND issuetype = Story AND status != "Done"

This will show all overdue stories that are not "Done".