Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Unable to update assignee using scriptrunner Script file under SCRIPT ROOT

Edited

Hi,
We use Jira inline script to set Assignee to defined Customfield. The Groovy script works fine when running as inline script written in the postfunction in workflow. When we put the same script in a file under Script root (Script editor) and select the runtime script file in the same workflow postfunction, the script fails to set the assignee. There is no error message. (using Jira Software 8.5.1  server/data center).

 

 

import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.Issue;
import java.sql.Timestamp;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.user.ApplicationUser;
import com.atlassian.jira.issue.index.IssueIndexingService;
import com.atlassian.jira.security.roles.ProjectRoleManager;

CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager();

CustomField CFAutoMelding = ComponentAccessor.getCustomFieldManager().getCustomFieldObject(12903L);
Object selectedValues = issue.getCustomFieldValue(CFAutoMelding);
def selectedValuesString = (String)issue.getCustomFieldValue(CFAutoMelding)

if (selectedValues == null){
// Automatisk message disabled

} else {

CustomField bestiller = customFieldManager.getCustomFieldObject(10911);
Object bestillerValue = issue.getCustomFieldValue(bestiller);
if(bestillerValue != null) {
issue.setAssignee(bestillerValue);
}
// Automatisk message aktivated

def commentManager = ComponentAccessor.getCommentManager()
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def assignee = issue.getAssigneeUser().getName()


def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def groupManager = ComponentAccessor.getGroupManager()
def role = projectRoleManager.getProjectRole("Developers")

if (issue.assigneeUser) {
if (assignee != user.name) {
commentManager.create(issue, user, "[~$assignee] Issue updated by [~$user.name] and your are assigned this issue", true);
}
}
}

FAIL_ScriptEditorScriptRoot.png

 



ErrorMessage.png

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events