Hello,
I have a situation and I don't know how to solve.
When the workflow is in the 'Validation' status and the 'Completion Date' custom field is filled I need to send a custom notification from 7 to 7 days if 'Completion Date' is before the current date. The user is in a custom field.
I created a Script Runner Listener and I could do that but not automatically, only when I updated the issue.
Do you know someone a solution for this case?
Thanks in advance,
Dana
Run a search for the issues you want to remind them about, save it as a filter and then use "subscribe"
Hello Nic,
Thanks for your answer but it's not what I need.
I need to send a custom notification to an user from a custom field. The user is changed from issue to issue. Here I can use only groups. From this reason I created the listener but I don't know how to use it automatically. Or to create an event for this case (if the issue is in the Validation status for 7 days or something similar).
Regards,
Dana
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.
Ok, the solution I gave does technically do what you need, in reporting issues to users that they need to do something about at the right time. But I totally understand that it is not quite what you want.
I think there are some problems with what you're describing now.
Fields do not drive notifications, they're just data. Notifications are triggered by change, not static data. A notification can only happen when there is an event, and events are only fired when something changes.
So, to get a notification, you have to have something change. "the time now is 7 days past a date field" is not a change, nothing on the issue changes, so there's no event to trigger a notification.
A listener can't do it - listeners listen for events and respond to them, they don't scan for stuff, and your need is not something that creates events.
In plain Jira, a subscription is the only service that does notifications without events, and it does it by being a service that says "run a search at specific times which get a list of issues and mails people that list"
You will need to do something similar here - create a new service that runs regularly, finds all the issues that need to generate a notification, and then for each, do one of:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Nic,
The solution was:
Regards,
Dana
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.