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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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:
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
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.
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.
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.