The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Scriptrunner script to assign based on reporter

Maya_Chase
October 16, 2017

I wrote this very simple script to set the reporter based on the ID of the reporter. In this test case, I'm checking to see if I am the reporter and then assign it to a given user. I check the values of the reporter, the assignee, and the issue:

import com.atlassian.jira.component.ComponentAccessor
import org.apache.log4j.Category
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager

if (issue.getReporterId() == 'machase')
{
issue.setAssigneeId('bcherry');
}

log.setLevel(org.apache.log4j.Level.DEBUG);
log.debug("assignee ${issue.getAssigneeId()} reporter ${issue.getReporterId()} issue ${issue}");

------------------

The result of my logging is just as expected:

assignee bcherry reporter machase issue TEST-36

However, the issue remains unassigned. 

Why?

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Maya_Chase
October 16, 2017

Of course I figured it out right after I posted. The script is fine, but you have to put assignments at the *very top* of the post-functions of your Create transition. It makes logical sense to put it after "creates issue initially" but if you do that, it won't assign.

Leaving this up in case anyone else needs the same thing....

TAGS
AUG Leaders

Atlassian Community Events