I want notifications to go out to a group based on Critical & Major only.
I have tried a notification scheme (it does not allow you to specify severity)
I have tried subscription, but I don't want to spam the users showing ALL notifications based on my filter. I want the notification to pop when the critical/major issue is created.
Thoughts?
You can try our plugin Raley Emails Notifications - https://marketplace.atlassian.com/plugins/net.vacom.jirassimo
Define your custom JQL as "severity in (Critical, major)" and specify email destination.
Subscription is the only way I can think of. Since you want only a notification on creation, use a filter like:
created > -15m and severity in (Critical, major)
and use a group subscription (don't send mails if no results) with following cron expression
0 0/15 * * * ? *
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pauls suggestion will not work if you're using JIRA Cloud, since this plugin (or others) aren't available. See: https://confluence.atlassian.com/pages/viewpage.action?pageId=315326753
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Install the "Jira Scripting Suite" plugin (free)
You can then add a post function to workflow (on the Create Issue transition) that will trigger a notification event based on the severity.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
But it is not available for JIRA Cloud...
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.