Hey everyone,
My first question in this community.
In Jira Service Desk, there is a field called "VIP". I am not sure if this is there by default or if this was created by some add-on (since I was not involved in the original setup). What I'd like to do is to automatically mark tickets from certain users as VIP. User accounts are synced with AD.
The idea is to create a queue displaying all currently open VIP tickets, so that it's easier for agents to notice and act accordingly.
Any help would be appreciated.
Dan
You could use Automation Lite for Jira for this, I think...
trigger on issue created
condition = jql of user in (vip group)
action = set VIP field
with that said I would approach more simply as follows:
this would seem to address your needs?
I am also not sure about the VIP field, but you can try to create a queue with a JQL like this:
VIP is not empty
I guess, it will give you all VIP tickets.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Alexey Matveev,
Thanks so much for the reply. The queue is not a problem, it's already created and tested. What I am interested is in the "automation" part. I'd like certain users to be classified as VIP immediately when a ticket is created by them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No idea why it logged me in with another account :D But the above reply is mine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You would need an Add-on like Power Scripts or ScriptRunner to accomplish this function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have ScriptRunner. Would you hint on how this is done? I am not too familiar with it.
I'll be doing this in a testing environment, not on the live :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to create a post function in the create transition. In this post functions you should set your custom field;
You can set a custom field value as it is written in this article:
You can check if a user is in a group by a code like in this article:
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.