Need your help in achieving this.
1. I need to know the list of issues in JIRA, the user is watching.
Example : User A is renamed to User B, now I need to know the list of issues in JIRA where user A is part of watcher's list. Now I need to replace the user A with user B in all these issues. How do I come to know the list of issues, user A is watching.
2. After getting the list of issues, I need to replace user A with user B in all these issues. How do I achieve this.
Hi
1.- project = XXXX and watcher = userA
2.- I think that your best option is developing a simple groovy script (perhaps can be done with jelly). Here is a slightly different use case, solved with a groovy script. They are trying a add some user as a watcher of the parent issue.
HTH
please use below simple JQL.
watcher = "username"
It will list all issues where "username" is watcher
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1.Select Advance Search,
2.watcher = currentUser() // If you want issues you are watching or user for whom you want to watch
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try this SQL:
SELECT * FROM [jiraschema].[jiraissue] i JOIN [jiraschema].[userassociation] a ON i.[ID] = a.[SINK_NODE_ID] WHERE [ASSOCIATION_TYPE] = 'WatchIssue'
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.