/
Remove labels for issues in bulk by using Jira Command Line Interface (CLI)
Remove labels for issues in bulk by using Jira Command Line Interface (CLI)
This article explains how to remove labels in bulk from Jira issues with Jira Command Line Interface (CLI).
Instructions
Form a JQL query to find the target issue from which labels are to be removed. Refer to the following sample JQL for reference:
project = ABC AND issuetype = Bug
Combine runFromIssueList and removeLabels to remove the labels for the target issues. This example works because runFromIssueList has the jql parameter and removeLabels has issue and labels parameters.
--action runFromIssueList --jql "project = ABC AND issuetype = Bug" --common "--action removeLabels --issue @issue@ --labels "@all" "
- Additionally, use the suppressNotify parameter to suppress notifications for users.
- It is recommended to test this scenario in a non-production environment, or, run the action with the --simulate parameter to verify the behavior before implementing it in production.
Related content
How to delete issues in bulk using Jira CLI
How to delete issues in bulk using Jira CLI
More like this
Set field value for issues in bulk using Jira Command Line Interface (CLI) in Jira
Set field value for issues in bulk using Jira Command Line Interface (CLI) in Jira
More like this
How to delete specific issue links in bulk using Jira CLI
How to delete specific issue links in bulk using Jira CLI
More like this
How to update issues in bulk from a CSV file using Jira Command Line Interface (CLI)
How to update issues in bulk from a CSV file using Jira Command Line Interface (CLI)
More like this
How to create issues in bulk from a CSV file using Jira Command Line Interface (CLI)
How to create issues in bulk from a CSV file using Jira Command Line Interface (CLI)
More like this
deleteIssue
deleteIssue
More like this