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

How to commit changes unassigning issue in groovy script

david perea April 18, 2019

Hi,

We need a groovy script that clears Assingee field to Unassigned.

This script will be triggered from script runner, only in certain conditions.

My code:

 

import com.atlassian.jira.ComponentManager

import com.atlassian.jira.issue.CustomFieldManager

import com.atlassian.jira.issue.Issue

import com.atlassian.jira.issue.MutableIssue

import com.atlassian.jira.issue.comments.CommentManager

import com.atlassian.jira.issue.fields.CustomField

import com.atlassian.jira.util.ImportUtils

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

import com.atlassian.crowd.embedded.api.User

 

MutableIssue issue = issue

issue.setAssignee(null)

log.error("Assignee: " + issue.getAssigneeId())

 

the log is printing null, which is correct, but when consulting the issue it is istill assigned.

what i'm doing wrong?

Thx in advance!!

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 19, 2019

Where is this being run from?

If it's run from a PostFunction, the change may be missing because of the order of the post functions. Be sure to place it before "update change history and story the issue".

If this is in a listener or other script, then you need to perform several steps yourself if you want to replicate the normal behavior.

  1. call updateIssue() method from IssueManager to store the issue in the db
  2. call createChangeGroup() method from ChangeLogUtil to create the change history
  3. call reIndex(issue) method from IssueIndexingService to update the index and have the new values available for searching.

There are several examples in the community for how to use all those

TAGS
AUG Leaders

Atlassian Community Events