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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.