I have a requirement to send a reminder notification to an issue assignee when:
- the due date is passed, Or
- the completion of an assigned task is due in next 3 days, Or
- when the due date is not defined, and assignee has to be notified that the task is in his queue since last 10 days for e.g.
As a business user, I can not write plug-in or develop a script for my JIRA Server instance. Is there a way to configure these via the existing interface or via an add-on?
You can do this with filter subscription (you can subscribe a usergroup to the filter):
You will need to create a JQL filter for the filter subscription. Let's say you want to filter out issues that are due within 3 days for each assignee.
project = projectname and duedate <= 3d and assignee = currentUser()
Otherwise you can also try out some third party plugins suggested above.
Hello Prateek,
I think you can achieve this by using the app Automation for Jira. I'd use:
You can check this add-on's limits here.
Edit : @Tzu Hau Chai answer below is much easier :) but it makes me think that I'd recommend to use a dashboard rather than sending notifications to avoid spamming users.
Hope this helps,
- Manon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Using dashboard is always easier :-) . But I am doing a prototype to use JIRA more like a workflow tool for minor business processes, so the users in question don't generally log in to JIRA unless they are reminded for any specific action pending on them. Hence the question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.