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.
Hi, when i run a transition in the workflow how can i add the name of the user running that transition in the custom field
thank you.
Hi Serkan,
You should be able to add a post function that sets the value of the custom field = currentUser()
Hi @serkan_sezer ,
you could set a custom script postfunction (ScriptRunner) on the transition who you're interested and in this postfunction, get the lastModifyUser with this code:
def lastModifyUser = ComponentAccessor.userManager.getUserByKey(ComponentAccessor.changeHistoryManager.getAllChangeItems(issue).last().userKey).name
Then use it to populate your custom field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Thank you for the reply. I want to continue without using the ScriptRunner feature.
We do not have the ScriptRunner plugin.
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.