Hi,
I need a groovy script for the below situation:
1. Without having to do a workflow transition, if the ticket is edited and the priority is moved up (After it is vetted) to critical or serious…add the appropriate critical or serious user to watcher
I'm sorry but I think it's not a good idea to use such scripts without any knowledge in scripting JIRA. You have to maintain all of your scripts if something goes wrong or if you want to update JIRA.
In your case you should implement a listener which looks for changes to the priority field and than adapt the watchers accordingly. Look into the documentation of Script Runner on how to write a listener, look into the JIRA API on how to read issue fields and add/remove watchers.
how can I check if priority has been moved from critical to serious. I mean i can check for priority of an issue
if((priority.equals("2")) || (priority.equals("1"){
//Assign to watchers who need for showstopper
//watchUsers(CRITICAL_users);
watchUsers(CRITICAL_test);
}
I am not able to figure out on how could I check if the priority has been changed from Critical to Serious.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can get the old values from the changelog like this.
event?.changeLog?.getRelated('ChildChangeItem')?.findAll{ it.field=='priority' }?.each { previousPriority = it.oldvalue // ... }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.