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

add reporter as watcher on JiraCloud

Alejandro Iglesias May 8, 2017

Hi everyone ! 

I need to add the original reporter as watcher on issue create. All of the guides that i found online are for scriptrunner for jira server, but i'm running a cloud instance and the scripts ( in scriptrunner.. ) doesn´t run.

is there any way to do this??


Thanks!

 

5 answers

Suggest an answer

Log in or Sign up to answer
0 votes
Alejandro Iglesias June 13, 2017

Hi Jon !

 

Thanks for the answer!, but i´m getting a code error.

tmp.PNG

Jon Bevan [Adaptavist]
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.
June 13, 2017

I've updated my answer to fix this.

0 votes
Jon Bevan [Adaptavist]
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.
June 13, 2017

Hi Alejandro,

This script should work for you when configured to run on the Issue Updated event.

// Get the change history for the issue
List<Map> histories = get(issue.self)
        .queryString('expand', 'changelog')
        .asObject(Map)
        .body
        .changelog
        .histories as List<Map>

// Determine whether the reporter was the last updated field
Map reporterChange = histories.isEmpty() ? null : histories
        .last()
        .items
        .find { it['field'] == 'reporter' }

// If the reporter was the last updated field...
if (reporterChange) {
    // Add the previous reporter as a watcher
    def resp = post("/rest/api/2/issue/${issue.key}/watchers")
        .header('Content-Type', 'application/json')
        .body("""\"${reporterChange.from}\"""")
        .asString()
    assert resp.status == 204
}

I hope that helps,
Thanks,
Jon

0 votes
Jon Bevan [Adaptavist]
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.
June 6, 2017

Hi Alejandro,

This should be possible using a Script Listener in ScriptRunner for JIRA Cloud, and I was going to provide some example code here for you, but I've run into a problem with the REST API that Atlassian provide for adding a watcher to an issue.

I'll post back here once I've figured out the problem.

Thanks,
Jon

Alejandro Iglesias June 6, 2017

ok Great ! 

It should not be only in the creation of the issue, but also every time that the reporter is modified.

so,  on reporter changed = add old reporter as watcher 

 

Thanks!

Alejandro

 

0 votes
Alejandro Iglesias May 31, 2017

what i really need is that when the reporter changes, the old one is added to the watcher list.

i couldn´t find any plugin or method to do this.

 

0 votes
AnnWorley
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 8, 2017

Our feature request mentions some other plugins that could be of use:

Ability to add watchers during issue creation

TAGS
AUG Leaders

Atlassian Community Events