Assign jira to user based on issue Type

UP August 22, 2013

I am new to script runner. I want to assign jira to user based on issue type using script runner groovy script.

I have written following code:

import com.atlassian.jira.component.ComponentAccessor

import com.atlassian.jira.user.util.UserManager

import com.atlassian.jira.issue.IssueManager

import com.atlassian.jira.issue.MutableIssue

import com.atlassian.jira.issue.Issue

import com.atlassian.jira.ComponentManager

if (issue.getIssueType() == "Task") {

MutableIssue myIssue = issue

IssueManager issueManager = ComponentAccessor.getIssueManager()

UserManager userManager = ComponentAccessor.getUserManager()

def reviewer = userManager.getUser("xyz")

myIssue.setAssignee(reviewer)

myIssue.store()

}

The error i get is:
javax.script.ScriptException: groovy.lang.MissingPropertyException: No such property: issue for class
Not sure how to fix this. I ran this through script console as well as a post function during transition from create --> open.

1 answer

1 accepted

1 vote
Answer accepted
Chaithra N
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.
August 22, 2013

Hi,

With out a Script Runner also you handle your requirement.

Solution:

Have Different Workflow for Different IssueType & in the postfunction assign it to the required User.

Also in case if you want to make Project Specific, then you can use Project Role for storing User (i.e who has to be Assignee)

Regards,

Chaithra

Suggest an answer

Log in or Sign up to answer