Hello, does anyone knows if there is a way to send automatic reminders for people in Jira?
For example, if someone has an investigation under him, after two weeks they will receive an automatic email that asked to describ the status?
Hi @Tomer Gartenhaus
Welcome to the Atlassian Community !
Native automation covers the basic case, but it gets messy once you need recurring reminders, relative reminders (like "3 days after this is updated/resolved, ping again if nothing happened"), or something private just for one person.
🌱 If you're looking for a cleaner solution that avoids creating hundreds of personal projects, I'd recommend taking a look at Issue Reminders. Quick rundown of what it does:
Happy to share more if it's useful for your case.
🍀 To learn more, feel free to contact me or explore the application through the Atlassian Marketplace link I’ve provided.
Disclaimer:I work for the vendor who developed this application.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, Jira Automation can handle this. You can create a Scheduled rule that checks for investigations not updated for 14 days and emails the assignee asking for a status update. Atlassian supports scheduled JQL searches with a Send email action.
For example:
status = "In Progress" AND updated <= -14d AND assignee IS NOT EMPTY
Then set the email recipient to Assignee. I’d also add a condition so the same person doesn’t receive the reminder every day after the 14-day mark.
This should work well for investigations where regular status updates are required. stickmanhook.com.br can stay separate from the Jira workflow.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Automation for Jira is the best way for your use case
https://support.atlassian.com/cloud-automation/docs/jira-cloud-automation/
Let us know if you have any questions.
Best,
Fadoua
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.