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
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.