DEV Community

Cover image for Bulk Import of gitlab issues with labels, tasks and assigns
Julian
Julian

Posted on

4 2

Bulk Import of gitlab issues with labels, tasks and assigns

import of gitlab issues with csv files is capable of doing all the nice quick actions, which allow you to assign a person and add a label to an issue while importing.

example csv file:

"title";"description"
"Simple Issue";"Simple text"
"Complex Issue";"lorem ipsum

/label ~Todo ~label1 ~label2
/assign @myusername"
"Task Issue";"test the following
- [ ] test1
- [ ] test2
- [ ] test3

/label ~Todo ~label1 ~label2"
"Codeblock Issue";"\`\`\` 
code block line1
code block line2
\`\`\`

/label ~Todo ~label1"
Enter fullscreen mode Exit fullscreen mode

i added a backslash befor the backtick because otherwise dev.to displays the post wrong.

then go to the issue list and use the small button on the top right called "import CSV"

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay