Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article explains how to create bulk project in Jira with help of Jira Jira projects in large numbers using Jira Command Line Interface (CLI).

Instructions

  1. Create a CSV file with the list of userId, UserEmail, UserFullName, UserPassword and group required data filled into the columns project, name, lead and template as shown in the following screenshot below:

         Image Removed

     2. Write an action with runFromCsv and adduser actions together to create bulk users in Jira. Please see the example action below:

...

  1. Image Added
  2. Combine the actions runFromCsv and createProject to create projects in bulk. This example works because the column names in the CSV file are the same as the parameter names for createProject.

    Code Block
    themeMidnight
    --action runFromCsv --file "

...

  1. bulkProjects.csv" --common "--action 

...

  1. createProject"


Info

It is recommend to recommended to test this scenario in a test environment before or run the action with the --simulate parameter to verify the behavior before implementing it in production.