I am going to have to make a lot of jira tickets so that will have epics, tasks, subtasks, and linkages. I thought I would use the CSV importer to make my job easier.
Linking parent and child relationships is working no problem, but when trying to specify linkages between tasks (eg. "relates" or "blocks") I am getting these warnings:
The validation process has found 7 warning/s
- Issue link 'Blocks' between '3' and '9' cannot be created - at least one of the issues couldn't be found.
- Issue link 'Relates' between '3' and '6' cannot be created - at least one of the issues couldn't be found.
- Issue link 'Blocks' between '4' and '10' cannot be created - at least one of the issues couldn't be found.
- Issue link 'Relates' between '4' and '7' cannot be created - at least one of the issues couldn't be found.
- Issue link 'Blocks' between '6' and '9' cannot be created - at least one of the issues couldn't be found.
- Issue link 'Relates' between '6' and '3' cannot be created - at least one of the issues couldn't be found.
- Issue link 'Blocks' between '7' and '10' cannot be created - at least one of the issues couldn't be found.
I am just trying to link on the Issue Id column ids
Here is the CSV I am using:
Issue Type,Summary,Description,Issue Id,Parent,Relates,Blocks
Epic,[Import test] Epic Test 1,This is a description for Epic 1,1,,,
Task,[Import test] iOS tickets,This is a description for Task 1,2,1,,
Sub-task,[Import test] iOS tickets - subtask 1,This is a description for iOS Subtask 1,3,2,6,9
Sub-task,[Import test] iOS tickets - subtask 2,This is a description for iOS Subtask 2,4,2,7,10 Task,[Import test] Android tickets,This is a description for Task 2,5,1,,
Sub-task,[Import test] Android tickets - subtask 1,This is a description for Android Subtask 1,6,5,3,9
Sub-task,[Import test] Android tickets - subtask 2,This is a description for Android Subtask 2,7,5,,10
Task,[Import test] CAL tests,This is a description for Task 2,8,1,,
Sub-task,[Import test] Remove CAL test 1,This is a description for CAL Subtask 1,9,8,, Sub-task,[Import test] Remove CAL Test 2,This is a description for CAL Subtask 2,10,8,,
Does anyone know where I am going wrong?