This article explains how to clone a batch of tickets Jira issues, that are based on a shared component, using Jira Command Line Interface app.
Instructions
- Create a component in your Jira instance.In the Terminal/command prompt, go to the Jira CLI installation folder.
Provide the below action command along with the JQL parameter to clone issues:
To clone a batch of issues into the same project, please use the below action command.
Code Block language text title Clone to the same project --action cloneIssues --jql "project = projectkey and component = TestComponent"
This command clones all the Jira tickets based on the JQL results. For example, if there are two tickets returned by the JQL, those two tickets are cloned.
To clone a batch of tickets from one project to another project, please use the below action command.
Code Block language text title Clone to different project --action cloneIssues --project "secondprojectkey" --jql "project = firstprojectkey AND component = SecondComponent" --autoComponent
Info |
---|
|