Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira Checklist by HeroCoders Transfer data to GitLab

Martin J Crawford October 15, 2025

We use Jira and have an automation rule set up to transfer story information transferred to GitLab. Is there a way to send the Checklist Pro information to GitLab in Gitlab Checklist format?

### Definition of Done
- [ ] Item 1
- [*] Item 2 (done)
- [ ] Item 3

1 answer

0 votes
Martin J Crawford October 15, 2025

Checklist Pro Data Center 7.1.8.10

Jira v10.7.3

Maxime Lefebvre _Okapya_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 15, 2025

Hi Martin!

I'm from the Checklist for Jira | Entreprise team on Data Center, I believe you are using our app because 7.1.8.10 is one of our version!

There are no existing features that would do this for you.

With Automation you can loop over each checklist item, read their values, and write in the GitLab format based on that. If it's possible to use Smart Values in your automation action that moves the data to GitLab, then you should be able to achieve something.

Here's a quick (untested) example to show you what I'm thinking about:

{{#Checklist}}
- [{{if(checked)}}*{{/}}] {{name}}
{{/}}

This could result in something like:

- [] unchecked item
- [*] oh this item is checked

Take a look at our documentation for available smart value properties.

I hope this helps!

Kind regards,
Maxime

Suggest an answer

Log in or Sign up to answer