I understand that I can create a filter subscription, so whenever the conditions of the filter are met, I am notified. While I need to be notified as soon as possible when the condition is met, I don't want to continue to receive subsequent reminders. Here is my query:
status = Escalated AND component = "Business Analysis" AND assignee is EMPTY)
Our process is once I am notified that the above condition is met, I assign the ticket. However until I get a chance to do this, I continue to receive emails. I can't change the frequency since I do want to be alerted as soon as possible, but I don't always have a chance to assign the ticket in a timely fashion since sometimes this happens at night or on weekends.
Is there another way to be notified when a ticket is created with these conditions, similar to how I would be notified if someone assigned me to a ticket?
Create your own post-function email in the "Escalated" transition with (component = "Business Analysis" AND assignee is EMPTY) as the condition. See the doc below:
https://jamieechlin.atlassian.net/wiki/display/GRV/Built-In+Scripts#Built-InScripts-SendCustomEmail
I entered: component = "Business Analysis" AND assignee is EMPTY as the condition, entered "test" in the Email and Subject templates, provided my email address and hit preview, and it returned the error 'This issue doesn't exist.' I thought it needed to actually find an issue that met the criteria, so I created a test ticket. I still get the same error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Don't I need to enter the condition in a different format? I'm not sure how to form it. Any help is appreciated. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you should something like this: {code} issue.componentObjects*.name.contains('Maven') && issue.assignee != 'Unassigned' {code}
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.
Glad to help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe instead of send you the filter results, you can add a post-function to automatically assign the ticket to you once it was escalated? And then you will receive an "Assign" notification.
Can this be an option?
Cheers,
Andre
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.