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
Hi all,
I'm trying to create a scripted field using the Adaptavist Scriptrunner for JIRA add-on that will retrieve the user name who most recently performed a specific transition on the issue. (i.e., User who performed the "Validated" transition as a field called "Validated By")
Also, I want to mention that I already know we could set this as a value using a post function in the transition, so I'm not looking for that answer. The issue is that we used to have a free version of JMCF, which made it very easy to pull this information, but when JMCF went paid, we didn't see enough use of that plugin to validate purchasing it, especially since we already have Scriptrunner, which can do 99% of the same plus more. But this one thing seems to be particularly tricky to figure out. Anyways, we have a lot of legacy issues which we need to pull this value for which we cannot 'set' it for in a post function.
Hoping Jamie Echlin sees this and can provide some insight.
Thanks!
Josiah
Hello,
You can use the following to get the last transaction user in history
ComponentAccessor.changeHistoryManager
.getChangeItemsWithFieldsForIssues([issue], ['status']).sort { it.timePerformed }.last().authorObject
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.