Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I need to create a huge number of issues, each with a separate list of checklist items.
For import I would use the JIRA standard CSV importer. Is it possible to import the checklist items this way? In which format do I have to provide them in the CSV file?
If that does not work: is there any other way to import them?
CSV Import does not work, see https://bitbucket.org/Whyves/checklist/issues/36/unable-to-import-into-the-task-field-when
Importing the issues using CSV and updating them using JIRA CLI works:
./jira.sh -a updateIssue --issue TEST-1 --field "checklistfield" --values "[V1-0-M] test,[V1-0-M] test2"
Could you expand on that? Given a checkbox field named "Vetting Process" with values:
How would you construct the command?
It seems like this would work, but it doesn't. With Jira 7.8 just generates an error.
./jira.sh -a updateIssue --issue TEST-1 --field "Vetting Process" --values "Code Reviewed,Unit tests reviewed,Tested with main data set"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Wolfgang,
I have investigated the CSV import a while ago and while it is technically possible to import customfield values, the standard JIRA implementation convert the imported item as an option which makes it impossible to do a proper import like most people who want it to. So, in short: I would not try it.
Now, as other means, if the items are solely for the issue and that there are no global options that are required, maybe some import via the JIRA REST services could work or maybe a groovy script but I haven`t try any of those.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.