[{"data":1,"prerenderedAt":1117},["ShallowReactive",2],{"/blog/migrating-your-jira-issues-into-gitlab":3,"navigation-en-us":330,"banner-en-us":757,"footer-en-us":767,"blog-post-authors-en-us-Abdulkader Benchi":1012,"blog-related-posts-en-us-migrating-your-jira-issues-into-gitlab":1027,"blog-promotions-en-us":1053,"next-steps-en-us":1107},{"id":4,"title":5,"authors":6,"body":8,"category":294,"date":295,"description":296,"extension":297,"externalUrl":298,"faq":298,"featured":299,"heroImage":300,"meta":301,"navigation":317,"path":318,"seo":319,"slug":323,"stem":324,"tags":325,"template":328,"updatedDate":298,"__hash__":329},"blogPosts/en-us/blog/migrating-your-jira-issues-into-gitlab.md","Migrating your JIRA issues to GitLab",[7],"Abdulkader Benchi",{"type":9,"value":10,"toc":288},"minimark",[11,39,51,66,69,74,94,99,108,134,138,141,149,157,163,174,180,184,187,193,208,211,217,220,226,238,244,247,253,256,264,273,277,284],[12,13,14,15,21,22,26,27,32,33,38],"p",{},"Here at ",[16,17,20],"a",{"href":18,"rel":19},"https://linagora.com/",[],"Linagora",", we believe in open source. If you have read my ",[16,23,25],{"href":24},"/blog/docker-my-precious/","last article",", you should know that we have recently migrated from ",[16,28,31],{"href":29,"rel":30},"https://www.atlassian.com/",[],"Atlassian"," to ",[16,34,37],{"href":35,"rel":36},"https://gitlab.com/",[],"GitLab",".",[12,40,41],{},[42,43,44,45,50],"em",{},"Editor's note: We don't currently have a native way to migrate JIRA issues into GitLab issues, although we are ",[16,46,49],{"href":47,"rel":48},"https://gitlab.com/gitlab-org/gitlab-ee/issues/2780",[],"working on one","! In the meantime, we are very appreciative of community efforts to provide workarounds like this one.",[12,52,53,54,59,60,65],{},"Migrating our repositories from ",[16,55,58],{"href":56,"rel":57},"https://bitbucket.org/",[],"Bitbucket"," to GitLab was so easy thanks to Git. However, migrating our issues (aka tickets) from ",[16,61,64],{"href":62,"rel":63},"https://www.atlassian.com/software/jira",[],"JIRA"," to GitLab was not so obvious. In fact, there are several alternative solutions to integrate JIRA as a plugin inside GitLab so as to continue using JIRA along with GitLab. However, our main goal was to completely leverage GitLab as our only open-source development tool.",[12,67,68],{},"If you want to know how to migrate your JIRA issues into GitLab, then you are on the right article. Once you read it, you will discover that it is really so easy to do the migration from JIRA to GitLab. Yes, as you can see, winter is coming to GitLab rivals, because everything is possible with GitLab.",[70,71,73],"h3",{"id":72},"migrating-jira-issues-into-gitlab-issues","Migrating JIRA issues into GitLab Issues",[12,75,76,77,82,83,88,89,38],{},"Our migration process will leverage the ",[16,78,81],{"href":79,"rel":80},"http://www.restapitutorial.com/",[],"REST APIs"," provided by both ",[16,84,87],{"href":85,"rel":86},"https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis",[],"JIRA REST API"," and GitLab Issues ",[16,90,93],{"href":91,"rel":92},"https://docs.gitlab.com/api/issues/",[],"REST API",[95,96,98],"h4",{"id":97},"api-calls","API calls:",[12,100,101,102,107],{},"To perform REST API cals, you can use your own preferred library. For me, I will use ",[16,103,106],{"href":104,"rel":105},"https://github.com/mzabriskie/axios",[],"axios",", which is my preferred promise based HTTP client for the browser and node.js. You can simply install it locally by doing:",[109,110,115],"pre",{"className":111,"code":112,"language":113,"meta":114,"style":114},"language-shell shiki shiki-themes github-light","npm install axios\n\n","shell","",[116,117,118],"code",{"__ignoreMap":114},[119,120,123,127,131],"span",{"class":121,"line":122},"line",1,[119,124,126],{"class":125},"s7eDp","npm",[119,128,130],{"class":129},"sYBdl"," install",[119,132,133],{"class":129}," axios\n",[95,135,137],{"id":136},"jira-side","JIRA side:",[12,139,140],{},"Before requesting the endpoints provided by JIRA, we need to gather the following information:",[109,142,147],{"className":143,"code":145,"language":146,"meta":114},[144],"language-text","// the base url to your JIRA\nconst JIRA_URL = 'https://your-jira-url.com/';\n\n// the JIRA project ID (short)\nconst JIRA_PROJECT = 'PRO';\n\n// JIRA username and password used to login\nconst JIRA_ACCOUNT = {\n  username,\n  password\n};\n\n","text",[116,148,145],{"__ignoreMap":114},[12,150,151,152,156],{},"Now, we need to call two endpoints call during the migration process. The first endpoint is to get all ",[153,154,155],"strong",{},"JIRA issues",":",[109,158,161],{"className":159,"code":160,"language":146,"meta":114},[144],"axios.request({\n  method: 'get',\n  url: `${JIRA_URL}/rest/api/2/search?jql=project=${JIRA_PROJECT}+order+by+id+asc&startAt=${offset}&maxResults=${limit}`,\n  auth: {\n    username: JIRA_ACCOUNT.username,\n    password: JIRA_ACCOUNT.password\n  }\n})\n",[116,162,160],{"__ignoreMap":114},[12,164,165,166,169,170,173],{},"The second endpoint is to get the ",[153,167,168],{},"attachments"," and the ",[153,171,172],{},"comments"," related to a given issue:",[109,175,178],{"className":176,"code":177,"language":146,"meta":114},[144],"axios.request({\n  method: 'get',\n  /*\n  * JIRA_ISSUE = the JIRA issue that we get from the previous call\n  */\n  url: `${JIRA_URL}/rest/api/2/issue/${JIRA_ISSUE.id}/?fields=attachment,comment`,\n  auth: {\n    username: JIRA_ACCOUNT.username,\n    password: JIRA_ACCOUNT.password\n  }\n})\n",[116,179,177],{"__ignoreMap":114},[95,181,183],{"id":182},"gitlab-side","GitLab side:",[12,185,186],{},"As for JIRA, we need to gather some information before starting sending REST requests:",[109,188,191],{"className":189,"code":190,"language":146,"meta":114},[144],"// the base url to your GitLab\nconst GITLAB_URL = 'http://your-gitlab-url.com/';\n\n// the project in gitlab that you are importing issues to\nconst GITLAB_PROJECT = 'namespaced/project/name';\n\n// GitLab username and password used to login\nconst GITLAB_ACCOUNT = {\n  username,\n  password\n};\n\n/* this token will be used whenever the API is invoked and\n* the jira's author of (the comment / attachment / issue) is not a gitlab user.\n* So, this identity will be used instead.\n* GITLAB_TOKEN is visible in your account: https://ci.linagora.com/profile/account\n*/\nconst GITLAB_TOKEN = 'get-this-token-from-your-profile';\n",[116,192,190],{"__ignoreMap":114},[12,194,195,196,199,200,203,204,207],{},"Each JIRA issue has several fields which represent JIRA users, e.g., ",[42,197,198],{},"assignee"," and ",[42,201,202],{},"reporter",". Once migrating to GitLab we should try to link these users to GitLab users (if they already exist on GitLab). However, if the user is not a GitLab user, then we have to leverage the ",[153,205,206],{},"GITLAB_TOKEN"," (line 18 in the last gist). That is, if the user does not exist on GitLab, then the identity of the user who is doing the migration will be used instead.",[12,209,210],{},"To search all GitLab users we need to send the following REST call:",[109,212,215],{"className":213,"code":214,"language":146,"meta":114},[144],"axios.request({\n  method: 'get',\n  // 10000 users, should be enough to get them all\n  url: `${GITLAB_URL}/api/v4/users?active=true&search=&per_page=10000`,\n  headers: {\n    'PRIVATE-TOKEN': GITLAB_TOKEN\n  }\n})\n",[116,216,214],{"__ignoreMap":114},[12,218,219],{},"And now, we can find the corresponding GitLab user for each JIRA user by doing:",[109,221,224],{"className":222,"code":223,"language":146,"meta":114},[144],"function jiraToGitlabUser(JIRAUser) {\n    // GitLabUsers = the list of GitLab users we get from the last call\n    return JIRAUser ? _.find(GitLabUsers, { email: JIRAUser.emailAddress }) : null\n  }\n",[116,225,223],{"__ignoreMap":114},[12,227,228,229,199,233,237],{},"It is worth noting that JIRA and GitLab issues are different in nature, so you need to migrate one type of issue to another. After searching all ",[16,230,155],{"href":231,"rel":232},"https://medium.com/linagora-engineering/gitlab-rivals-winter-is-here-584eacf1fe9a",[],[16,234,236],{"href":231,"rel":235},[],"JIRA attachments"," and comments, we can now transfer them into GitLab issues by doing the following mapping:",[109,239,242],{"className":240,"code":241,"language":146,"meta":114},[144],"{\n    title: JIRAIssue.fields.summary,\n    description: JIRAIssue.fields.description,\n    labels: [JIRAIssue.fields.issuetype.name],\n    created_at: JIRAIssue.fields.created,\n    updated_at: JIRAIssue.fields.updated,\n    done: issue.fields.status.statusCategory.name === 'Done' ? true : false,\n    assignee: jiraToGitlabUser(JIRAIssue.fields.assignee ),\n    reporter: jiraToGitlabUser(JIRAIssue.fields.reporter),\n    comments: JIRAComments.map(JIRAComment => ({\n      author: jiraToGitlabUser(JIRAComment.author),\n      comment: JIRAComment.body,\n      created_at: JIRAComment.created\n    })),\n    attachments: JIRAAttachments.map(JIRAAttachment => ({\n      author: jiraToGitlabUser(JIRAAttachment.author),\n      filename: JIRAAttachment.filename,\n      content: JIRAAttachment.content,\n      created_at: JIRAAttachment.created\n    }))\n};\n",[116,243,241],{"__ignoreMap":114},[12,245,246],{},"Now our GitLab issue is created, all what we need to do is to post it:",[109,248,251],{"className":249,"code":250,"language":146,"meta":114},[144],"axios.request({\n  method: 'post',\n  url: `${GITLAB_URL}/api/v4/projects/${encodeURIComponent(GITLAB_PROJECT)}/issues`,\n  // the GitLab issue that we have just created\n  data: GITLAB_ISSUE\n  headers: {\n    'PRIVATE-TOKEN': GITLAB_TOKEN\n  }\n})\n",[116,252,250],{"__ignoreMap":114},[12,254,255],{},"As you can see, migrating your JIRA tickets to GitLab is all about some REST API calls. As a developer, I think that you do such REST API calls every day. So we really do not need to stuck with JIRA nor to add it as a plugin to GitLab.",[12,257,258,259,38],{},"If you think that this article helps you discover something interesting that you feel you want to do every day, so please do not hesitate and join us. We are looking for new talents. For more information, you can have a look at our ",[16,260,263],{"href":261,"rel":262},"https://job.linagora.com/en/",[],"Job site",[12,265,266,267,38],{},"This post originally appeared on ",[42,268,269],{},[16,270,272],{"href":231,"rel":271},[],"Medium",[70,274,276],{"id":275},"about-the-guest-author","About the Guest Author",[12,278,279,280,38],{},"Abdulkader Benchi is the Javascript team leader at ",[16,281,20],{"href":282,"rel":283},"https://linagora.com/careers",[],[285,286,287],"style",{},"html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":114,"searchDepth":289,"depth":289,"links":290},2,[291,293],{"id":72,"depth":292,"text":73},3,{"id":275,"depth":292,"text":276},"engineering","2017-08-21","We're migrating all of our working tools to open-source ones, and moving to GitLab has made all the difference.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667509/Blog/Hero%20Images/continuous-integration-from-jenkins-to-gitlab-using-docker.jpg",{"excerpt":302},{"type":9,"value":303},[304],[12,305,14,306,21,309,26,311,32,314,38],{},[16,307,20],{"href":18,"rel":308},[],[16,310,25],{"href":24},[16,312,31],{"href":29,"rel":313},[],[16,315,37],{"href":35,"rel":316},[],true,"/en-us/blog/migrating-your-jira-issues-into-gitlab",{"title":5,"description":296,"ogTitle":5,"ogDescription":296,"noIndex":299,"ogImage":300,"ogUrl":320,"ogSiteName":321,"ogType":322,"canonicalUrls":320},"https://about.gitlab.com/blog/migrating-your-jira-issues-into-gitlab","https://about.gitlab.com","article","migrating-your-jira-issues-into-gitlab","en-us/blog/migrating-your-jira-issues-into-gitlab",[326,327],"integrations","workflow","BlogPost","5Yye5stSDDMB4kJN-7LOdeuB8N9s7_hGFAhLuoBgGVM",{"logo":331,"freeTrial":336,"sales":341,"login":346,"items":351,"search":677,"minimal":708,"duo":727,"switchNav":736,"pricingDeployment":747},{"config":332},{"href":333,"dataGaName":334,"dataGaLocation":335},"/","gitlab logo","header",{"text":337,"config":338},"Get free trial",{"href":339,"dataGaName":340,"dataGaLocation":335},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":342,"config":343},"Request a demo",{"href":344,"dataGaName":345,"dataGaLocation":335},"/sales/?contact-topic=request-demo","sales",{"text":347,"config":348},"Sign in",{"href":349,"dataGaName":350,"dataGaLocation":335},"https://gitlab.com/users/sign_in/","sign in",[352,381,481,486,599,655],{"text":353,"config":354,"menu":356},"Platform",{"dataNavLevelOne":355},"platform",{"type":357,"columns":358},"cards",[359,365,373],{"title":353,"description":360,"link":361},"The intelligent orchestration platform for DevSecOps",{"text":362,"config":363},"Explore our Platform",{"href":364,"dataGaName":355,"dataGaLocation":335},"/platform/",{"title":366,"description":367,"link":368},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":369,"config":370},"Meet GitLab Duo",{"href":371,"dataGaName":372,"dataGaLocation":335},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":374,"description":375,"link":376},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":377,"config":378},"Learn more",{"href":379,"dataGaName":380,"dataGaLocation":335},"/why-gitlab/","why gitlab",{"text":382,"left":317,"config":383,"menu":385},"Product",{"dataNavLevelOne":384},"solutions",{"type":386,"link":387,"columns":391,"feature":460},"lists",{"text":388,"config":389},"View all Solutions",{"href":390,"dataGaName":384,"dataGaLocation":335},"/solutions/",[392,416,439],{"title":393,"description":394,"link":395,"items":400},"Automation","CI/CD and automation to accelerate deployment",{"config":396},{"icon":397,"href":398,"dataGaName":399,"dataGaLocation":335},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[401,405,408,412],{"text":402,"config":403},"CI/CD",{"href":404,"dataGaLocation":335,"dataGaName":402},"/solutions/continuous-integration/",{"text":366,"config":406},{"href":371,"dataGaLocation":335,"dataGaName":407},"gitlab duo agent platform - product menu",{"text":409,"config":410},"Source Code Management",{"href":411,"dataGaLocation":335,"dataGaName":409},"/solutions/source-code-management/",{"text":413,"config":414},"Automated Software Delivery",{"href":398,"dataGaLocation":335,"dataGaName":415},"Automated software delivery",{"title":417,"description":418,"link":419,"items":424},"Security","Deliver code faster without compromising security",{"config":420},{"href":421,"dataGaName":422,"dataGaLocation":335,"icon":423},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[425,429,434],{"text":426,"config":427},"Application Security Testing",{"href":421,"dataGaName":428,"dataGaLocation":335},"Application security testing",{"text":430,"config":431},"Software Supply Chain Security",{"href":432,"dataGaLocation":335,"dataGaName":433},"/solutions/supply-chain/","Software supply chain security",{"text":435,"config":436},"Software Compliance",{"href":437,"dataGaName":438,"dataGaLocation":335},"/solutions/software-compliance/","software compliance",{"title":440,"link":441,"items":446},"Measurement",{"config":442},{"icon":443,"href":444,"dataGaName":445,"dataGaLocation":335},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[447,451,455],{"text":448,"config":449},"Visibility & Measurement",{"href":444,"dataGaLocation":335,"dataGaName":450},"Visibility and Measurement",{"text":452,"config":453},"Value Stream Management",{"href":454,"dataGaLocation":335,"dataGaName":452},"/solutions/value-stream-management/",{"text":456,"config":457},"Analytics & Insights",{"href":458,"dataGaLocation":335,"dataGaName":459},"/solutions/analytics-and-insights/","Analytics and insights",{"title":461,"type":386,"items":462},"GitLab for",[463,469,475],{"text":464,"config":465},"Enterprise",{"icon":466,"href":467,"dataGaLocation":335,"dataGaName":468},"Building","/enterprise/","enterprise",{"text":470,"config":471},"Small Business",{"icon":472,"href":473,"dataGaLocation":335,"dataGaName":474},"Work","/small-business/","small business",{"text":476,"config":477},"Public Sector",{"icon":478,"href":479,"dataGaLocation":335,"dataGaName":480},"Organization","/solutions/public-sector/","public sector",{"text":482,"config":483},"Pricing",{"href":484,"dataGaName":485,"dataGaLocation":335,"dataNavLevelOne":485},"/pricing/","pricing",{"text":487,"config":488,"menu":490},"Resources",{"dataNavLevelOne":489},"resources",{"type":386,"link":491,"columns":495,"feature":588},{"text":492,"config":493},"View all resources",{"href":494,"dataGaName":489,"dataGaLocation":335},"/resources/",[496,528,555],{"title":497,"items":498},"Getting started",[499,504,509,514,519,524],{"text":500,"config":501},"Install",{"href":502,"dataGaName":503,"dataGaLocation":335},"/install/","install",{"text":505,"config":506},"Quick start guides",{"href":507,"dataGaName":508,"dataGaLocation":335},"/get-started/","quick setup checklists",{"text":510,"config":511},"Learn",{"href":512,"dataGaLocation":335,"dataGaName":513},"https://university.gitlab.com/","learn",{"text":515,"config":516},"Product documentation",{"href":517,"dataGaName":518,"dataGaLocation":335},"https://docs.gitlab.com/","product documentation",{"text":520,"config":521},"Best practice videos",{"href":522,"dataGaName":523,"dataGaLocation":335},"/getting-started-videos/","best practice videos",{"text":525,"config":526},"Integrations",{"href":527,"dataGaName":326,"dataGaLocation":335},"/integrations/",{"title":529,"items":530},"Discover",[531,536,541,546,550],{"text":532,"config":533},"Customer success stories",{"href":534,"dataGaName":535,"dataGaLocation":335},"/customers/","customer success stories",{"text":537,"config":538},"Blog",{"href":539,"dataGaName":540,"dataGaLocation":335},"/blog/","blog",{"text":542,"config":543},"Demo Hub",{"href":544,"dataGaName":545,"dataGaLocation":335},"/demo-hub/","demo hub",{"text":547,"config":548},"The Source",{"href":549,"dataGaName":540,"dataGaLocation":335},"/the-source/",{"text":551,"config":552},"Remote",{"href":553,"dataGaName":554,"dataGaLocation":335},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":556,"items":557},"Connect",[558,563,568,573,578,583],{"text":559,"config":560},"GitLab Services",{"href":561,"dataGaName":562,"dataGaLocation":335},"/services/","services",{"text":564,"config":565},"Contribute",{"href":566,"dataGaName":567,"dataGaLocation":335},"https://contributors.gitlab.com","contribute",{"text":569,"config":570},"Community",{"href":571,"dataGaName":572,"dataGaLocation":335},"/community/","community",{"text":574,"config":575},"Forum",{"href":576,"dataGaName":577,"dataGaLocation":335},"https://forum.gitlab.com/","forum",{"text":579,"config":580},"Events",{"href":581,"dataGaName":582,"dataGaLocation":335},"/events/","events",{"text":584,"config":585},"Partners",{"href":586,"dataGaName":587,"dataGaLocation":335},"/partners/","partners",{"config":589,"title":592,"text":593,"link":594},{"background":590,"textColor":591},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":595,"config":596},"Read the latest",{"href":597,"dataGaName":598,"dataGaLocation":335},"/whats-new/","whats new",{"text":600,"config":601,"menu":603},"Company",{"dataNavLevelOne":602},"company",{"type":386,"columns":604},[605],{"items":606},[607,612,618,620,625,630,635,640,645,650],{"text":608,"config":609},"About",{"href":610,"dataGaName":611,"dataGaLocation":335},"/company/","about",{"text":613,"config":614,"footerGa":617},"Jobs",{"href":615,"dataGaName":616,"dataGaLocation":335},"/jobs/","jobs",{"dataGaName":616},{"text":579,"config":619},{"href":581,"dataGaName":582,"dataGaLocation":335},{"text":621,"config":622},"Leadership",{"href":623,"dataGaName":624,"dataGaLocation":335},"/company/team/e-group/","leadership",{"text":626,"config":627},"Handbook",{"href":628,"dataGaName":629,"dataGaLocation":335},"https://handbook.gitlab.com/","handbook",{"text":631,"config":632},"Investor relations",{"href":633,"dataGaName":634,"dataGaLocation":335},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":636,"config":637},"Trust Center",{"href":638,"dataGaName":639,"dataGaLocation":335},"/security/","trust center",{"text":641,"config":642},"AI Transparency Center",{"href":643,"dataGaName":644,"dataGaLocation":335},"/ai-transparency-center/","ai transparency center",{"text":646,"config":647},"Newsletter",{"href":648,"dataGaName":649,"dataGaLocation":335},"/company/contact/#contact-forms","newsletter",{"text":651,"config":652},"Press",{"href":653,"dataGaName":654,"dataGaLocation":335},"/press/","press",{"text":656,"config":657,"menu":658},"Contact us",{"dataNavLevelOne":602},{"type":386,"columns":659},[660],{"items":661},[662,667,672],{"text":663,"config":664},"Talk to sales",{"href":665,"dataGaName":666,"dataGaLocation":335},"/sales/","talk to sales",{"text":668,"config":669},"Support portal",{"href":670,"dataGaName":671,"dataGaLocation":335},"https://support.gitlab.com/hc/en-us","support portal",{"text":673,"config":674},"Customer portal",{"href":675,"dataGaName":676,"dataGaLocation":335},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":678,"login":679,"suggestions":686},"Close",{"text":680,"link":681},"To search repositories and projects, login to",{"text":682,"config":683},"gitlab.com",{"href":349,"dataGaName":684,"dataGaLocation":685},"search login","search",{"text":687,"default":688},"Suggestions",[689,691,695,697,701,705],{"text":366,"config":690},{"href":371,"dataGaName":366,"dataGaLocation":685},{"text":692,"config":693},"Code Suggestions (AI)",{"href":694,"dataGaName":692,"dataGaLocation":685},"/solutions/code-suggestions/",{"text":402,"config":696},{"href":404,"dataGaName":402,"dataGaLocation":685},{"text":698,"config":699},"GitLab on AWS",{"href":700,"dataGaName":698,"dataGaLocation":685},"/partners/technology-partners/aws/",{"text":702,"config":703},"GitLab on Google Cloud",{"href":704,"dataGaName":702,"dataGaLocation":685},"/partners/technology-partners/google-cloud-platform/",{"text":706,"config":707},"Why GitLab?",{"href":379,"dataGaName":706,"dataGaLocation":685},{"freeTrial":709,"mobileIcon":714,"desktopIcon":719,"secondaryButton":722},{"text":710,"config":711},"Start free trial",{"href":712,"dataGaName":340,"dataGaLocation":713},"https://gitlab.com/-/trials/new/","nav",{"altText":715,"config":716},"Gitlab Icon",{"src":717,"dataGaName":718,"dataGaLocation":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":715,"config":720},{"src":721,"dataGaName":718,"dataGaLocation":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":723,"config":724},"Get Started",{"href":725,"dataGaName":726,"dataGaLocation":713},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":728,"mobileIcon":732,"desktopIcon":734},{"text":729,"config":730},"Learn more about GitLab Duo",{"href":371,"dataGaName":731,"dataGaLocation":713},"gitlab duo",{"altText":715,"config":733},{"src":717,"dataGaName":718,"dataGaLocation":713},{"altText":715,"config":735},{"src":721,"dataGaName":718,"dataGaLocation":713},{"button":737,"mobileIcon":742,"desktopIcon":744},{"text":738,"config":739},"/switch",{"href":740,"dataGaName":741,"dataGaLocation":713},"#contact","switch",{"altText":715,"config":743},{"src":717,"dataGaName":718,"dataGaLocation":713},{"altText":715,"config":745},{"src":746,"dataGaName":718,"dataGaLocation":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":748,"mobileIcon":753,"desktopIcon":755},{"text":749,"config":750},"Back to pricing",{"href":484,"dataGaName":751,"dataGaLocation":713,"icon":752},"back to pricing","GoBack",{"altText":715,"config":754},{"src":717,"dataGaName":718,"dataGaLocation":713},{"altText":715,"config":756},{"src":721,"dataGaName":718,"dataGaLocation":713},{"title":758,"titleMobile":759,"button":760,"config":765},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":377,"config":761},{"href":762,"dataGaName":763,"dataGaLocation":764},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":766,"disabled":299},"release",{"data":768},{"text":769,"source":770,"edit":776,"contribute":781,"config":786,"items":791,"minimal":1001},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":771,"config":772},"View page source",{"href":773,"dataGaName":774,"dataGaLocation":775},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":777,"config":778},"Edit this page",{"href":779,"dataGaName":780,"dataGaLocation":775},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":782,"config":783},"Please contribute",{"href":784,"dataGaName":785,"dataGaLocation":775},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":787,"facebook":788,"youtube":789,"linkedin":790},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[792,839,893,937,969],{"title":482,"links":793,"subMenu":808},[794,798,803],{"text":795,"config":796},"View plans",{"href":484,"dataGaName":797,"dataGaLocation":775},"view plans",{"text":799,"config":800},"Why Premium?",{"href":801,"dataGaName":802,"dataGaLocation":775},"/pricing/premium/","why premium",{"text":804,"config":805},"Why Ultimate?",{"href":806,"dataGaName":807,"dataGaLocation":775},"/pricing/ultimate/","why ultimate",[809],{"title":810,"links":811},"Contact Us",[812,815,817,819,824,829,834],{"text":813,"config":814},"Contact sales",{"href":665,"dataGaName":345,"dataGaLocation":775},{"text":668,"config":816},{"href":670,"dataGaName":671,"dataGaLocation":775},{"text":673,"config":818},{"href":675,"dataGaName":676,"dataGaLocation":775},{"text":820,"config":821},"Status",{"href":822,"dataGaName":823,"dataGaLocation":775},"https://status.gitlab.com/","status",{"text":825,"config":826},"Terms of use",{"href":827,"dataGaName":828,"dataGaLocation":775},"/terms/","terms of use",{"text":830,"config":831},"Privacy statement",{"href":832,"dataGaName":833,"dataGaLocation":775},"/privacy/","privacy statement",{"text":835,"config":836},"Cookie preferences",{"dataGaName":837,"dataGaLocation":775,"id":838,"isOneTrustButton":317},"cookie preferences","ot-sdk-btn",{"title":382,"links":840,"subMenu":849},[841,845],{"text":842,"config":843},"DevSecOps platform",{"href":364,"dataGaName":844,"dataGaLocation":775},"devsecops platform",{"text":846,"config":847},"AI-Assisted Development",{"href":371,"dataGaName":848,"dataGaLocation":775},"ai-assisted development",[850],{"title":851,"links":852},"Topics",[853,858,863,868,873,878,883,888],{"text":854,"config":855},"CICD",{"href":856,"dataGaName":857,"dataGaLocation":775},"/topics/ci-cd/","cicd",{"text":859,"config":860},"GitOps",{"href":861,"dataGaName":862,"dataGaLocation":775},"/topics/gitops/","gitops",{"text":864,"config":865},"DevOps",{"href":866,"dataGaName":867,"dataGaLocation":775},"/topics/devops/","devops",{"text":869,"config":870},"Version Control",{"href":871,"dataGaName":872,"dataGaLocation":775},"/topics/version-control/","version control",{"text":874,"config":875},"DevSecOps",{"href":876,"dataGaName":877,"dataGaLocation":775},"/topics/devsecops/","devsecops",{"text":879,"config":880},"Cloud Native",{"href":881,"dataGaName":882,"dataGaLocation":775},"/topics/cloud-native/","cloud native",{"text":884,"config":885},"AI for Coding",{"href":886,"dataGaName":887,"dataGaLocation":775},"/topics/devops/ai-for-coding/","ai for coding",{"text":889,"config":890},"Agentic AI",{"href":891,"dataGaName":892,"dataGaLocation":775},"/topics/agentic-ai/","agentic ai",{"title":894,"links":895},"Solutions",[896,898,900,905,909,912,916,919,921,924,927,932],{"text":426,"config":897},{"href":421,"dataGaName":426,"dataGaLocation":775},{"text":415,"config":899},{"href":398,"dataGaName":399,"dataGaLocation":775},{"text":901,"config":902},"Agile development",{"href":903,"dataGaName":904,"dataGaLocation":775},"/solutions/agile-delivery/","agile delivery",{"text":906,"config":907},"SCM",{"href":411,"dataGaName":908,"dataGaLocation":775},"source code management",{"text":854,"config":910},{"href":404,"dataGaName":911,"dataGaLocation":775},"continuous integration & delivery",{"text":913,"config":914},"Value stream management",{"href":454,"dataGaName":915,"dataGaLocation":775},"value stream management",{"text":859,"config":917},{"href":918,"dataGaName":862,"dataGaLocation":775},"/solutions/gitops/",{"text":464,"config":920},{"href":467,"dataGaName":468,"dataGaLocation":775},{"text":922,"config":923},"Small business",{"href":473,"dataGaName":474,"dataGaLocation":775},{"text":925,"config":926},"Public sector",{"href":479,"dataGaName":480,"dataGaLocation":775},{"text":928,"config":929},"Education",{"href":930,"dataGaName":931,"dataGaLocation":775},"/solutions/education/","education",{"text":933,"config":934},"Financial services",{"href":935,"dataGaName":936,"dataGaLocation":775},"/solutions/finance/","financial services",{"title":487,"links":938},[939,941,943,945,948,950,953,955,957,959,961,963,965,967],{"text":500,"config":940},{"href":502,"dataGaName":503,"dataGaLocation":775},{"text":505,"config":942},{"href":507,"dataGaName":508,"dataGaLocation":775},{"text":510,"config":944},{"href":512,"dataGaName":513,"dataGaLocation":775},{"text":515,"config":946},{"href":517,"dataGaName":947,"dataGaLocation":775},"docs",{"text":537,"config":949},{"href":539,"dataGaName":540,"dataGaLocation":775},{"text":951,"config":952},"What's new",{"href":597,"dataGaName":598,"dataGaLocation":775},{"text":532,"config":954},{"href":534,"dataGaName":535,"dataGaLocation":775},{"text":551,"config":956},{"href":553,"dataGaName":554,"dataGaLocation":775},{"text":559,"config":958},{"href":561,"dataGaName":562,"dataGaLocation":775},{"text":564,"config":960},{"href":566,"dataGaName":567,"dataGaLocation":775},{"text":569,"config":962},{"href":571,"dataGaName":572,"dataGaLocation":775},{"text":574,"config":964},{"href":576,"dataGaName":577,"dataGaLocation":775},{"text":579,"config":966},{"href":581,"dataGaName":582,"dataGaLocation":775},{"text":584,"config":968},{"href":586,"dataGaName":587,"dataGaLocation":775},{"title":600,"links":970},[971,973,975,977,979,981,985,990,992,994,996],{"text":608,"config":972},{"href":610,"dataGaName":602,"dataGaLocation":775},{"text":613,"config":974},{"href":615,"dataGaName":616,"dataGaLocation":775},{"text":621,"config":976},{"href":623,"dataGaName":624,"dataGaLocation":775},{"text":626,"config":978},{"href":628,"dataGaName":629,"dataGaLocation":775},{"text":631,"config":980},{"href":633,"dataGaName":634,"dataGaLocation":775},{"text":982,"config":983},"Sustainability",{"href":984,"dataGaName":982,"dataGaLocation":775},"/sustainability/",{"text":986,"config":987},"Diversity, inclusion and belonging (DIB)",{"href":988,"dataGaName":989,"dataGaLocation":775},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":636,"config":991},{"href":638,"dataGaName":639,"dataGaLocation":775},{"text":646,"config":993},{"href":648,"dataGaName":649,"dataGaLocation":775},{"text":651,"config":995},{"href":653,"dataGaName":654,"dataGaLocation":775},{"text":997,"config":998},"Modern Slavery Transparency Statement",{"href":999,"dataGaName":1000,"dataGaLocation":775},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1002},[1003,1006,1009],{"text":1004,"config":1005},"Terms",{"href":827,"dataGaName":828,"dataGaLocation":775},{"text":1007,"config":1008},"Cookies",{"dataGaName":837,"dataGaLocation":775,"id":838,"isOneTrustButton":317},{"text":1010,"config":1011},"Privacy",{"href":832,"dataGaName":833,"dataGaLocation":775},[1013],{"id":1014,"title":7,"body":298,"config":1015,"content":1017,"description":298,"extension":1021,"meta":1022,"navigation":317,"path":1023,"seo":1024,"stem":1025,"__hash__":1026},"blogAuthors/en-us/blog/authors/abdulkader-benchi.yml",{"template":1016},"BlogAuthor",{"name":7,"config":1018},{"headshot":1019,"ctfId":1020},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi","yml",{},"/en-us/blog/authors/abdulkader-benchi",{},"en-us/blog/authors/abdulkader-benchi","P2e1ddfFDUJwYeDoJCpUHAtx9nOI4QBtAE7e48MLWw4",[1028,1037,1045],{"title":1029,"description":1030,"heroImage":1031,"category":294,"date":1032,"authors":1033,"slug":1036,"externalUrl":298},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[1034,1035],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1038,"description":1039,"heroImage":1040,"category":294,"date":1041,"authors":1042,"slug":1044,"externalUrl":298},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[1043],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1046,"description":1047,"heroImage":1048,"category":294,"date":1049,"authors":1050,"slug":1052,"externalUrl":298},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[1051],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1054},[1055,1069,1081,1093],{"id":1056,"categories":1057,"header":1059,"text":1060,"button":1061,"image":1066},"ai-modernization",[1058],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1062,"config":1063},"Get your AI maturity score",{"href":1064,"dataGaName":1065,"dataGaLocation":540},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1067},{"src":1068},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1070,"categories":1071,"header":1073,"text":1060,"button":1074,"image":1078},"devops-modernization",[1072,877],"product","Are you just managing tools or shipping innovation?",{"text":1075,"config":1076},"Get your DevOps maturity score",{"href":1077,"dataGaName":1065,"dataGaLocation":540},"/assessments/devops-modernization-assessment/",{"config":1079},{"src":1080},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1082,"categories":1083,"header":1085,"text":1060,"button":1086,"image":1090},"security-modernization",[1084],"security","Are you trading speed for security?",{"text":1087,"config":1088},"Get your security maturity score",{"href":1089,"dataGaName":1065,"dataGaLocation":540},"/assessments/security-modernization-assessment/",{"config":1091},{"src":1092},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1094,"paths":1095,"header":1098,"text":1099,"button":1100,"image":1105},"github-azure-migration",[1096,1097],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1101,"config":1102},"See how GitLab compares to GitHub",{"href":1103,"dataGaName":1104,"dataGaLocation":540},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1106},{"src":1080},{"header":1108,"blurb":1109,"button":1110,"secondaryButton":1115},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1111,"config":1112},"Get your free trial",{"href":1113,"dataGaName":340,"dataGaLocation":1114},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":813,"config":1116},{"href":665,"dataGaName":345,"dataGaLocation":1114},1786803751261]