Hi,
Am I able to use Scriptrunner to add a Watcher using an email address as the value? The email address would come from custom field type "Text Field (single line)". This script would run on the "Create" transition of the Issue workflow.
I've had a look at some example scripts but my understanding of Groovy is very limited.
Any assistance would be very much appreciated.
Thanks,
Andrew
Thanks for the reply Alejandro. Only an email address, of users already in the JIRA internal directory, would be used.
This thread seems to contain some scripts that may get me there - https://community.atlassian.com/t5/Answers-Developer-Questions/How-do-I-add-a-specific-user-as-a-watcher-using-script-runner/qaq-p/569185
Could anyone please suggest a change to the below script that would allow the use of the user account email address instead of user name?
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.user.ApplicationUser
MutableIssue issue = issue
def cfManager = ComponentAccessor.getCustomFieldManager()
def watcherManager = ComponentAccessor.getWatcherManager()
def cf = cfManager.getCustomFieldObject(“12046”)
def u1 = issue.getCustomFieldValue(cf) as ApplicationUser
watcherManager.startWatching(u1, issue)
Please note, I'm getting an error when running the above script but seems to be close to what I would require.
Any assistance appreciated.
Cheers,
Andrew
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.