Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×When editing multiple issues via a Bulk Change, the Watchers field is not in the list of editable fields. Is there a way to enable the Watchers field for the Bulk Change operation?
You should be able to bulk change watchers with the following plugin.
It adds a custom field type of watchers which you can then create a custom field and add to screens.
Hi Ivan,
You cannot achieve this on JIRA OnDemand, I guess. As this plugin is not available for JIRA OnDemand.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is now possible using jira automation.
You can create a global rule to bulk edit watcher by creating a scheduled rule.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is definitely the way to go!
I'm surprised it's the only way, but definitely better than adding a plugin or cobbling together a groovy script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can anybody specify in a little more detail how such a global rule can be set up and which level of access rights are required for that?
I have a couple of issues to bulk add watchers and I am a project admin. And I am pretty new to Jira in general.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I figured it out. Inside the Project ...
> Poject Settings > Project Automation > Create Rule
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have had success bulk changing watchers with the following JQL watcher = currentUser() ORDER BY assignee
But has to be done by each user when they log in as it will has it suggests checks the logged in user... Which is still a pain!
Also tried this watchers >=1 and project = "Call Log Support" or watchers >= 1 AND project is not EMPTY and I was able to see other users as watchers
I'm sure you know already but if the issue is closed you will not be able to remove a watcher, unless you reopen the issue. Also will need rights to be able to manage watchers across each project.
Darren
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This can be accomplished using Bulk Edit for oneself or with the ScriptRunner's "Switch User" feature if administering other users as an Admin.
Watcher Bulk Removal Procedure (as currentuser or as any user if an Admin):
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Brian. Note that if using the ScriptRunner's "Switch User" feature, the user you switch to must first be given the permissions to bulk EDIT all of the projects the affected issues belong to.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jason, you are correct. My context, albeit not too clear, was referencing a switch to an Administrator named user (ie: Admin) with global Project rights - so as to denote account changes in issue history as being completed by 'Admin' instead of ones own currentUser account name (ie: John Doe). Thanks for your comment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just did a search with resolution = Unresolved AND watcher = user.name and was able to unwatch the issues for my team member. Worked like a charm. Thanks Brian.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can achieve it via API:
import requests
import json
url = 'YOUR_JIRA_ADDRESS/rest/api/2/search?jql=%22Project%22%20%3D%20PROJECTNAME%20and%20%22Watcher%20list%22%20in%20(USERNAME)'
headers = { "Content-Type": "application/json", "Authorization": XXXX}
try:
r = requests.get(url, headers=headers)
except Exception as e:
print(e)
for issue in r.json()["issues"]:
url_remove = 'YOUR_JIRA_ADDRESS/rest/api/2/issue/'+issue["key"]+'/watchers?username=USERNAME'
rem = requests.get(url_remove, headers=headers)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do this for yourself pretty easily OOTB, just create a filter that loads all tickets you want to unwatch, click on Tools > Bulk Change and select Stop Watching.
Unfortunately, this only works if you have the permissions to do bulk change (which I know a lot of people tend to remove for safety reasons).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you ONLY change the watcher status for yourself or can you affect the whole watcher list with this method?
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Bulk update for watchers is not possible at https://jira.atlassian.com :-(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know how to bulk watch/unwatch issues myself, but what about other team members? They are not admins, and do not have access to bulk change issues. Is there a way for a) me to bulk unwatch another user and/or b) provide instructions for my team to bulk unwatch issues themselves?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is nothing stronger than community! Glad it worked out for you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i see this option in filter tab, hope its not because of any addon installed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira will not allow you to do this, but if you have Jira Workflow Toolkit (JWT) you can add a transition to your workflow that will add a group or project role as watchers of a given issue. This will allow you to bulk-transition any existing issues using the new transition. The transition should go from any state back to itself.
You probably want to define a project role, then also add users in this role as watchers when doing certain other normal transitions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all,
We are using JIRA agile with an on-site implementation and do not have control over the wider organisations rules and plug-ins.
During a sprint, we assign tickets to a team lead to confirm estimation before starting the sprint. After the tickets have been assigned to team members to begin work, the team lead is still a watcher for all tickets and receives an excessive amount of notifications.
It would be great to at least be able to filter or arrange by watcher to make bulk changes.
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all,
I'm using Jira 4.4.4 and I've added 'jira-watcher-field-2.4.1' plugin. How can I add this field to issue bulk editing screen?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Salva, You need to add a new custom field type of "Watcher" then you can perform bulk changes on that specific field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi Ivan
I've installed this plugin but I dont know how to asdd this filed to be able see this in bulk edition screen. could you provide me some tops? wpuld be great :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We currently use autowatch functionality in our JIRA environment. Unfortunately, with our work, it can make for a ton of 'watched' issues, that we probably don't necessarily need/want and all of the notifications that come with them. This leads us to have to go out and manually 'stop watching' a lot of issues, which is time consuming and annoying. It would be nice if we could remove ourselves as watchers in bulk (at least until I can convince our admins to turn off autowatch!)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Cannot bulk change watchers across the instance using this plugin only on a issue by issue basis by the looks of it..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.