This article explains how to add multiple issues to different sprints using Jira Command Line Interface (CLI).
Instructions
- Create a CSV file with two columns (with titles jql and id).
jql is for the list of issues to add and id is for the sprint ids as shown below: Combine runFromCsv and addIssuesToSprint actions with file parameter to add multiple issues to different sprints.
--action runFromCsv --file "sprints.csv" --common "--action addIssuesToSprint"
This example works because the CSV file contains the data that is needed for addIssuesToSprint action with relevant parameters.
It is recommended to test this scenario in a non-production environment or run the action with --simulate parameter, to verify the behavior before deploying on a production environment.