In JIRA, how do I set up mail notification such that, when a Status is in a specific status and the Assignee = several assignees? It seems to me this cannot be done out of the box. If so, will I need to do a custom JIRA development? If so, where to get started? Is there a plugin for this already?
Thanks,
Yes for example "fire event when", the condition would be something like:
issue.statusObject.name == 'Resolved' && ['user1', 'user2'].contains(issue.assigneeId)
(untested). Then you add a new event to the notification scheme, this event gets fired by this post-function or listener. Very minimal amount of code to write.
There are some scripting plugins, you do not really need to develop anything.
https://plugins.atlassian.com/search/with?q=scripting&product=all
Pick and choose.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are right that this cannot be done out of the box. But it might be easy to do in a JIRA listener. Check the conditions that you want in a listener and throw a new event once the conditions are satisfied.
The new event can be included in the notifications scheme as appropriate!
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.