Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to set watcher based on custom field with Scriptrunner

Paul Tandy April 16, 2018

Hi Guys,

today is the first-time that I'm attempting to use scriptrunner. Being someone thats never coded before, its proving to be an interesting challenge.

The user requirement should be easy,

1 When customfield Severity -cf[11807] = High

2 Add the JIRA group "TSM Managers" to the watchers 

My idea, is to add the script into the post function for the workflow.

Sounds simple and probably is when you understand how scriptrunner works.

Thanks for your help.

Paul 

 

 

 

 

 

 

 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 16, 2018

You can not add groups as watchers. You can add only users.

Paul Tandy April 16, 2018

You should still be able to extract the users from the group and add them to the watchers list.

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 16, 2018

Yes, you can do it. You can find it here:

https://community.atlassian.com/t5/Marketplace-Apps-questions/Get-the-members-of-a-group/qaq-p/443779

You can find how to add users as watchers here:

https://community.atlassian.com/t5/Marketplace-Apps-questions/Grrovy-Scirpt-to-add-user-to-Watcher-List/qaq-p/178738

I guess, you have everything you need to write your script.

Paul Tandy April 24, 2018

Thanks Alexey,

As we only have x3 users whom need to be notified when the ticket severity is high,  we decided to hardcore them to the watchers list.

 Run a Groovy script against the current issue:

import com.atlassian.jira.component.ComponentAccessor
 
def watcherManager = ComponentAccessor.getWatcherManager()
def userManager = ComponentAccessor.getUserManager()

def user1 = userManager.getUserByName("arey")
def user2 = userManager.getUserByName("seboursi")
def user3 = userManager.getUserByName("vrakotom")
def Sev = issue.get("customfield_11834")

if(Sev == "High") {
watcherManager.startWatching(user1, issue)
watcherManager.startWatching(user2, issue)
watcherManager.startWatching(user3, issue)

 

Thanks for your help.

Now Ive been asked to setup a NEW "calculated field" which requires a script that is above my basic coding levels!

Cheers,

Paul 

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2018

What kind of calculated field?

Kenneth Fung August 7, 2019

It shows that it is missing a } at the end of this but when I put that it causes a bunch of other errors?

TAGS
AUG Leaders

Atlassian Community Events