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!!
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.
There are several examples in the community for how to use all those
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.