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_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.
Hi, Thank you for the reply. I want to continue without using the ScriptRunner feature.
We do not have the ScriptRunner plugin.
Hi Serkan,
You should be able to add a post function that sets the value of the custom field = currentUser()
It looks like you're new here. Sign in or register to get started.