This article explains how to create bulk Jira projects in Jira large numbers using Jira Command Line Interface (CLI).
Instructions
- Create a CSV file with required data filled into the columns project, name, lead and template as shown in the following screenshot:
Combine the actions runFromCsv and createProject to to create bulk projects in Jirabulk. This This example works because the column names in the CSV file column names are the same as the parameter names for the for createProject.
Code Block theme Midnight --action runFromCsv --file "bulkProjects.csv" --common "--action createProject"
Info |
---|
It is recommended to test this scenario in a test environment before implementing it in production. |