Forums

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

Is there a way to automate the reminder 1 day before sprint closure?

Dheeraj Kumar C November 22, 2025

Hi All,

I need some help to prepare the JQL query or any other way to automate and send the reminder to the team members 1 or 2 days before the automated sprint closure.

Thanks in advance,

Dheeraj

3 answers

2 accepted

8 votes
Answer accepted
arielei
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.
November 22, 2025

Hey @Dheeraj Kumar C 

You can achieve this by creating the following automation:

Trigger - Schedule to run every day with JQL condition : sprint in openSprints()

If Smart value : {{now.diff(sprint.last.endDate).businessDays}} equals 2

Action: Send email or Slack or teams (depending on what method you want).

 

Best regards,

Ariel

Dheeraj Kumar C November 22, 2025

Thank you @arielei  for the response :)

2 votes
Answer accepted
Bill Sheboy
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.
November 22, 2025

Hi @Dheeraj Kumar C -- Welcome to the Atlassian Community!

As a variation of the suggestion from @arielei please consider checking the maximum date rather than the last sprint added to an issue.  This will prevent problems with re-ordering of sprints in the backlog causing mismatches.

And, the bulk-handling feature must be used with the scheduled trigger with JQL and the openSprints() function for this scenario. Otherwise, the rule would send the reminder for each issue in the open sprint.

For example:

  • trigger: Scheduled, to run daily early in the morning, with JQL
    • project = myProject AND sprint IN openSprints()
    • select the option "Process all issues produced by this trigger in bulk"
  • advanced compare condition
    • first value: {{now.diff(issues.first.sprint.endDate.max).businessDays}}
    • condition: equals
    • second value: 2
  • action: send the reminder email

Please note well the plural smart value {{issues}} is used with the bulk-handling feature, but we only need to check one issue, such as the first one from the trigger.

 

Kind regards,
Bill

Dheeraj Kumar C November 22, 2025

Thank you @Bill Sheboy for the response.

Like Bill Sheboy likes this
0 votes
Benjamin Anderson
Contributor
November 22, 2025

You can use Jira Automation → Scheduled rule: run daily with JQL sprint in openSprints() and add an email/Slack action. Schedule it 1–2 days before sprint end. JQL alone can’t trigger reminders.

Suggest an answer

Log in or Sign up to answer