You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am trying to compare the current logged in user during a post function to verify that the transition isn't running via an automation. The automation is set to run as xyz user. So if the user executing the transition matches that username I don't want to assign the current user to the assignee. If the current user doesn't match the username then I want to assign the currently logged in user as the assignee. This is what I have been trying unsuccessfully.
import com.atlassian.jira.component.ComponentAccessor
def userManager = ComponentAccessor.getUserManager()
def issueService = ComponentAccessor.issueService
def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser
if (user != userManager.getUserByName("xyz"))
{
def validateAssignResult = issueService.validateAssign(user,issue.id, user.username)
if(validateAssignResult.isValid()){ issueService.assign(user,validateAssignResult) }
}
I look at what the step in the post functions return when I run it manually and it appears to have the correct information but the assignee doesn't update. I am new to Jira and Groovy so any help will be appreciated.
Your code works fine for me in the Script Console (though note in your second listing you define User with a capital "U" and then use it with a lowercase "u"; they should match). Perhaps your post function should be moved up/down in the list of post functions?
After I fixed the case of the U it is logging teh change to history but not actually changing the assignee. I've moved it around in the post function order and that doesn't seem to change anything. I have an update change history step and an re-index step in the post function. It is currently first in the postfunction order. Code is below
import com.atlassian.jira.component.ComponentAccessor
def userManager = ComponentAccessor.getUserManager()
def issueService = ComponentAccessor.issueService
def user = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()
if (user != userManager.getUserByName("SA-PItseJiraAdmin"))
{
def validateAssignResult = issueService.validateAssign(user,issue.id,user.username)
if(validateAssignResult.isValid()){issueService.assign(user,validateAssignResult)}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So I have this working with minimal testing -
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def userManager = ComponentAccessor.getUserManager()
def User = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()
//def Issue issue = issue
if (User != userManager.getUserByName("xyz"))
{
issue.assignee = User
}
But this does not-
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def issueService = ComponentAccessor.issueService
def userManager = ComponentAccessor.getUserManager()
def User = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()
//def Issue issue = issue
if (User != userManager.getUserByName("xyz"))
{
def validateAssignResult = issueService.validateAssign(user,issue.id, user.username)
if(validateAssignResult.isValid()){ issueService.assign(user,validateAssignResult) }
}
So it would appear that my (validateAssignResult.isValid()) is failing.
Is this a check that is bestPractice? It seems to me that it would be. Why is it failing?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.