[{"data":1,"prerenderedAt":1788},["ShallowReactive",2],{"/blog/gitlab-pages-features-review-apps-and-multiple-website-deployment":3,"navigation-en-us":998,"banner-en-us":1425,"footer-en-us":1435,"blog-post-authors-en-us-Matthew Macfarlane|Janis Altherr":1679,"blog-related-posts-en-us-gitlab-pages-features-review-apps-and-multiple-website-deployment":1706,"blog-promotions-en-us":1725,"next-steps-en-us":1778},{"id":4,"title":5,"authors":6,"body":9,"category":974,"date":975,"description":976,"extension":977,"externalUrl":978,"faq":978,"featured":979,"heroImage":980,"meta":981,"navigation":415,"path":982,"seo":983,"slug":987,"stem":988,"tags":989,"template":995,"updatedDate":996,"__hash__":997},"blogPosts/en-us/blog/gitlab-pages-features-review-apps-and-multiple-website-deployment.md","GitLab Pages features review apps and multiple website deployment",[7,8],"Matthew Macfarlane","Janis Altherr",{"type":10,"value":11,"toc":966},"minimark",[12,22,25,30,33,37,59,63,74,174,181,198,201,208,211,257,268,274,316,322,325,332,508,511,514,695,698,703,706,720,902,909,931,934,937,949,953,962],[13,14,15,21],"p",{},[16,17,20],"a",{"href":18,"rel":19},"https://docs.gitlab.com/user/project/pages/",[],"GitLab Pages"," has long been a popular choice for hosting static websites, allowing users to showcase their projects, blogs, and documentation directly from their repositories.",[13,23,24],{},"Before GitLab 17.4, you could only have a single version of your GitLab Pages website. So you couldn’t preview your changes or have multiple versions of your website deployed simultaneously. Now, with a Premium or Ultimate license, you can do both!",[26,27,29],"h3",{"id":28},"introducing-parallel-deployments","Introducing Parallel Deployments",[13,31,32],{},"With Parallel Deployments, users can now easily preview changes and manage multiple environments for their GitLab Pages sites. This enhancement allows seamless experimentation with new ideas, enabling users to confidently test and refine their sites. By catching any issues early, users can ensure the live site remains stable and polished, building on the already great foundation of GitLab Pages.",[26,34,36],{"id":35},"why-parallel-deployments-is-a-game-changer","Why Parallel Deployments is a game-changer",[38,39,40,51],"ol",{},[41,42,43,47,50],"li",{},[44,45,46],"strong",{},"Version control made easy",[48,49],"br",{},"\nIf your project involves software development or documentation that covers multiple versions (such as user guides for different software releases), Parallel Deployments makes it easy to manage. Or you can use the feature to localize your website for different languages.",[41,52,53,56,58],{},[44,54,55],{},"Flexibility to experiment",[48,57],{},"\nWant to try out a new design or feature? Parallel Deployments lets you experiment freely. You can create a separate version of your site to test new ideas without impacting the current site. This flexibility encourages creativity and continuous improvement.",[26,60,62],{"id":61},"how-to-add-review-apps-to-your-gitlab-pages-project","How to add review apps to your GitLab Pages project",[13,64,65,66,70,71,73],{},"To add a review app to your GitLab Pages project, edit your ",[67,68,69],"code",{},".gitlab-ci.yml"," file to create a deployment for each merge request (MR). Let’s assume you start with a ",[67,72,69],{}," file somewhat like this:",[75,76,81],"pre",{"className":77,"code":78,"language":79,"meta":80,"style":80},"language-yaml shiki shiki-themes github-light","create-pages:\n  stage: deploy\n  script:\n    - npm run build\n  pages: \n    publish: dist # the name of the folder containing the pages files\n  rules:\n    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH # only run this job when there's a commit to the default branch\n\n","yaml","",[67,82,83,96,109,117,126,135,150,158],{"__ignoreMap":80},[84,85,88,92],"span",{"class":86,"line":87},"line",1,[84,89,91],{"class":90},"shJU0","create-pages",[84,93,95],{"class":94},"sgsFI",":\n",[84,97,99,102,105],{"class":86,"line":98},2,[84,100,101],{"class":90},"  stage",[84,103,104],{"class":94},": ",[84,106,108],{"class":107},"sYBdl","deploy\n",[84,110,112,115],{"class":86,"line":111},3,[84,113,114],{"class":90},"  script",[84,116,95],{"class":94},[84,118,120,123],{"class":86,"line":119},4,[84,121,122],{"class":94},"    - ",[84,124,125],{"class":107},"npm run build\n",[84,127,129,132],{"class":86,"line":128},5,[84,130,131],{"class":90},"  pages",[84,133,134],{"class":94},": \n",[84,136,138,141,143,146],{"class":86,"line":137},6,[84,139,140],{"class":90},"    publish",[84,142,104],{"class":94},[84,144,145],{"class":107},"dist",[84,147,149],{"class":148},"sAwPA"," # the name of the folder containing the pages files\n",[84,151,153,156],{"class":86,"line":152},7,[84,154,155],{"class":90},"  rules",[84,157,95],{"class":94},[84,159,161,163,166,168,171],{"class":86,"line":160},8,[84,162,122],{"class":94},[84,164,165],{"class":90},"if",[84,167,104],{"class":94},[84,169,170],{"class":107},"$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH",[84,172,173],{"class":148}," # only run this job when there's a commit to the default branch\n",[13,175,176,177,180],{},"To also run the pages pipeline when there’s an MR being opened or updated, we can add another rule to ",[67,178,179],{},"pages.rules",":",[75,182,184],{"className":77,"code":183,"language":79,"meta":80,"style":80},"- if: $CI_PIPELINE_SOURCE == \"merge_request_event\"\n",[67,185,186],{"__ignoreMap":80},[84,187,188,191,193,195],{"class":86,"line":87},[84,189,190],{"class":94},"- ",[84,192,165],{"class":90},[84,194,104],{"class":94},[84,196,197],{"class":107},"$CI_PIPELINE_SOURCE == \"merge_request_event\"\n",[13,199,200],{},"If we only add this rule, however, each Pages job will always replace the main deployment – each time an MR is opened! You likely don’t want that to happen.",[13,202,203,204,207],{},"To provide each individual deployment with its own URL, we’ve introduced the new ",[67,205,206],{},"pages.path_prefix"," property.",[13,209,210],{},"A Pages deployment with this configuration...",[75,212,214],{"className":77,"code":213,"language":79,"meta":80,"style":80},"create-pages:\n  script:\n    - ...\n  pages:\n    ...\n    path_prefix: my-review-app\n\n",[67,215,216,222,228,236,242,247],{"__ignoreMap":80},[84,217,218,220],{"class":86,"line":87},[84,219,91],{"class":90},[84,221,95],{"class":94},[84,223,224,226],{"class":86,"line":98},[84,225,114],{"class":90},[84,227,95],{"class":94},[84,229,230,232],{"class":86,"line":111},[84,231,122],{"class":94},[84,233,235],{"class":234},"sYu0t","...\n",[84,237,238,240],{"class":86,"line":119},[84,239,131],{"class":90},[84,241,95],{"class":94},[84,243,244],{"class":86,"line":128},[84,245,246],{"class":234},"    ...\n",[84,248,249,252,254],{"class":86,"line":137},[84,250,251],{"class":90},"    path_prefix",[84,253,104],{"class":94},[84,255,256],{"class":107},"my-review-app\n",[13,258,259,260,263,264,267],{},"...will be available at ",[67,261,262],{},"https://my-pages-app-7fe824.gitlab.io/my-review-app",", or, with unique domains disabled, ",[67,265,266],{},"https://my-group.gitlab.io/my-project/my-review-app",".",[13,269,270,271,180],{},"But there’s no need to hardcode the path_prefix. You can dynamically generate it using CI variables. That’s particularly useful for review apps – to create a path for each MR, use the ",[67,272,273],{},"CI_MERGE_REQUEST_IID variable",[75,275,277],{"className":77,"code":276,"language":79,"meta":80,"style":80},"create-pages:\n  script:\n    - ...\n  pages:\n    ...\n    path_prefix: mr-$CI_MERGE_REQUEST_IID\n\n",[67,278,279,285,291,297,303,307],{"__ignoreMap":80},[84,280,281,283],{"class":86,"line":87},[84,282,91],{"class":90},[84,284,95],{"class":94},[84,286,287,289],{"class":86,"line":98},[84,288,114],{"class":90},[84,290,95],{"class":94},[84,292,293,295],{"class":86,"line":111},[84,294,122],{"class":94},[84,296,235],{"class":234},[84,298,299,301],{"class":86,"line":119},[84,300,131],{"class":90},[84,302,95],{"class":94},[84,304,305],{"class":86,"line":128},[84,306,246],{"class":234},[84,308,309,311,313],{"class":86,"line":137},[84,310,251],{"class":90},[84,312,104],{"class":94},[84,314,315],{"class":107},"mr-$CI_MERGE_REQUEST_IID\n",[13,317,318,319,267],{},"An MR with the ID 114 would then automatically create a deployment at ",[67,320,321],{},"https://my-pages-app-7fe824.gitlab.io/mr-114",[13,323,324],{},"With those concepts at hand, we’d like our pipeline to dynamically create either a main deployment for the default branch, or a path_prefixed-review app for MR events.",[13,326,327,328,331],{},"First, let’s add a ",[67,329,330],{},"create-pages-review-app"," job to our pipeline config:",[75,333,335],{"className":77,"code":334,"language":79,"meta":80,"style":80},"create-pages-deployment:\n  # This job will create a pages deployment without path_prefix\n  # when there is a commit to the default branch\n  stage: deploy\n  script:\n    - npm run build\n  pages: \n    publish: dist \n  rules:\n    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH\n\ncreate-pages-review-app:\n  # This job will create a pages deployment with a path_prefix\n  # when there a merge request is created or updated.\n  stage: deploy\n  script:\n    - npm run build\n  pages:\n    publish: dist \n    path_prefix: 'mr-$CI_MERGE_REQUEST_IID' # Prefix with the mr-\u003Ciid>, like `mr-123`\n  rules:\n    - if: $CI_PIPELINE_SOURCE == \"merge_request_event\"\n\n",[67,336,337,344,349,354,362,368,374,380,391,398,410,417,424,430,436,445,452,459,466,477,490,497],{"__ignoreMap":80},[84,338,339,342],{"class":86,"line":87},[84,340,341],{"class":90},"create-pages-deployment",[84,343,95],{"class":94},[84,345,346],{"class":86,"line":98},[84,347,348],{"class":148},"  # This job will create a pages deployment without path_prefix\n",[84,350,351],{"class":86,"line":111},[84,352,353],{"class":148},"  # when there is a commit to the default branch\n",[84,355,356,358,360],{"class":86,"line":119},[84,357,101],{"class":90},[84,359,104],{"class":94},[84,361,108],{"class":107},[84,363,364,366],{"class":86,"line":128},[84,365,114],{"class":90},[84,367,95],{"class":94},[84,369,370,372],{"class":86,"line":137},[84,371,122],{"class":94},[84,373,125],{"class":107},[84,375,376,378],{"class":86,"line":152},[84,377,131],{"class":90},[84,379,134],{"class":94},[84,381,382,384,386,388],{"class":86,"line":160},[84,383,140],{"class":90},[84,385,104],{"class":94},[84,387,145],{"class":107},[84,389,390],{"class":94}," \n",[84,392,394,396],{"class":86,"line":393},9,[84,395,155],{"class":90},[84,397,95],{"class":94},[84,399,401,403,405,407],{"class":86,"line":400},10,[84,402,122],{"class":94},[84,404,165],{"class":90},[84,406,104],{"class":94},[84,408,409],{"class":107},"$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH\n",[84,411,413],{"class":86,"line":412},11,[84,414,416],{"emptyLinePlaceholder":415},true,"\n",[84,418,420,422],{"class":86,"line":419},12,[84,421,330],{"class":90},[84,423,95],{"class":94},[84,425,427],{"class":86,"line":426},13,[84,428,429],{"class":148},"  # This job will create a pages deployment with a path_prefix\n",[84,431,433],{"class":86,"line":432},14,[84,434,435],{"class":148},"  # when there a merge request is created or updated.\n",[84,437,439,441,443],{"class":86,"line":438},15,[84,440,101],{"class":90},[84,442,104],{"class":94},[84,444,108],{"class":107},[84,446,448,450],{"class":86,"line":447},16,[84,449,114],{"class":90},[84,451,95],{"class":94},[84,453,455,457],{"class":86,"line":454},17,[84,456,122],{"class":94},[84,458,125],{"class":107},[84,460,462,464],{"class":86,"line":461},18,[84,463,131],{"class":90},[84,465,95],{"class":94},[84,467,469,471,473,475],{"class":86,"line":468},19,[84,470,140],{"class":90},[84,472,104],{"class":94},[84,474,145],{"class":107},[84,476,390],{"class":94},[84,478,480,482,484,487],{"class":86,"line":479},20,[84,481,251],{"class":90},[84,483,104],{"class":94},[84,485,486],{"class":107},"'mr-$CI_MERGE_REQUEST_IID'",[84,488,489],{"class":148}," # Prefix with the mr-\u003Ciid>, like `mr-123`\n",[84,491,493,495],{"class":86,"line":492},21,[84,494,155],{"class":90},[84,496,95],{"class":94},[84,498,500,502,504,506],{"class":86,"line":499},22,[84,501,122],{"class":94},[84,503,165],{"class":90},[84,505,104],{"class":94},[84,507,197],{"class":107},[13,509,510],{},"Now you’re creating a deployment both when pushing to the default branch, and prefixed parallel deployments when creating or updating MRs!",[13,512,513],{},"For the best experience, add the URL to the environment job property. This will add a link to the review app to the MR page:",[75,515,517],{"className":77,"code":516,"language":79,"meta":80,"style":80},"create-pages-deployment:\n  # This job will create a pages deployment without path_prefix\n  # when there is a commit to the default branch\n  stage: deploy\n  script:\n    - npm run build\n  pages: \n    publish: dist \n  rules:\n    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH\n\ncreate-pages-review-app:\n  # This job will create a pages deployment with a path_prefix\n  # when there a merge request is created or updated.\n  stage: deploy\n  script:\n    - npm run build\n  pages:\n    publish: dist \n    path_prefix: 'mr-$CI_MERGE_REQUEST_IID' # Prefix with the mr-\u003Ciid>, like `mr-123`\n  rules:\n    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH\n  environment:\n    name: \"Pages Review MR ${CI_MERGE_REQUEST_IID}\"\n    url: $CI_PAGES_URL\n\n",[67,518,519,525,529,533,541,547,553,559,569,575,585,589,595,599,603,611,617,623,629,639,649,655,665,673,684],{"__ignoreMap":80},[84,520,521,523],{"class":86,"line":87},[84,522,341],{"class":90},[84,524,95],{"class":94},[84,526,527],{"class":86,"line":98},[84,528,348],{"class":148},[84,530,531],{"class":86,"line":111},[84,532,353],{"class":148},[84,534,535,537,539],{"class":86,"line":119},[84,536,101],{"class":90},[84,538,104],{"class":94},[84,540,108],{"class":107},[84,542,543,545],{"class":86,"line":128},[84,544,114],{"class":90},[84,546,95],{"class":94},[84,548,549,551],{"class":86,"line":137},[84,550,122],{"class":94},[84,552,125],{"class":107},[84,554,555,557],{"class":86,"line":152},[84,556,131],{"class":90},[84,558,134],{"class":94},[84,560,561,563,565,567],{"class":86,"line":160},[84,562,140],{"class":90},[84,564,104],{"class":94},[84,566,145],{"class":107},[84,568,390],{"class":94},[84,570,571,573],{"class":86,"line":393},[84,572,155],{"class":90},[84,574,95],{"class":94},[84,576,577,579,581,583],{"class":86,"line":400},[84,578,122],{"class":94},[84,580,165],{"class":90},[84,582,104],{"class":94},[84,584,409],{"class":107},[84,586,587],{"class":86,"line":412},[84,588,416],{"emptyLinePlaceholder":415},[84,590,591,593],{"class":86,"line":419},[84,592,330],{"class":90},[84,594,95],{"class":94},[84,596,597],{"class":86,"line":426},[84,598,429],{"class":148},[84,600,601],{"class":86,"line":432},[84,602,435],{"class":148},[84,604,605,607,609],{"class":86,"line":438},[84,606,101],{"class":90},[84,608,104],{"class":94},[84,610,108],{"class":107},[84,612,613,615],{"class":86,"line":447},[84,614,114],{"class":90},[84,616,95],{"class":94},[84,618,619,621],{"class":86,"line":454},[84,620,122],{"class":94},[84,622,125],{"class":107},[84,624,625,627],{"class":86,"line":461},[84,626,131],{"class":90},[84,628,95],{"class":94},[84,630,631,633,635,637],{"class":86,"line":468},[84,632,140],{"class":90},[84,634,104],{"class":94},[84,636,145],{"class":107},[84,638,390],{"class":94},[84,640,641,643,645,647],{"class":86,"line":479},[84,642,251],{"class":90},[84,644,104],{"class":94},[84,646,486],{"class":107},[84,648,489],{"class":148},[84,650,651,653],{"class":86,"line":492},[84,652,155],{"class":90},[84,654,95],{"class":94},[84,656,657,659,661,663],{"class":86,"line":499},[84,658,122],{"class":94},[84,660,165],{"class":90},[84,662,104],{"class":94},[84,664,409],{"class":107},[84,666,668,671],{"class":86,"line":667},23,[84,669,670],{"class":90},"  environment",[84,672,95],{"class":94},[84,674,676,679,681],{"class":86,"line":675},24,[84,677,678],{"class":90},"    name",[84,680,104],{"class":94},[84,682,683],{"class":107},"\"Pages Review MR ${CI_MERGE_REQUEST_IID}\"\n",[84,685,687,690,692],{"class":86,"line":686},25,[84,688,689],{"class":90},"    url",[84,691,104],{"class":94},[84,693,694],{"class":107},"$CI_PAGES_URL\n",[13,696,697],{},"Congratulations, you’ve now set up MR review apps for your Pages site.",[699,700,702],"h2",{"id":701},"how-to-deploy-documentation-for-different-versions-of-your-product","How to deploy documentation for different versions of your product",[13,704,705],{},"The Parallel Deployments feature is also a useful tool if you maintain the documentation of multiple versions of your software simultaneously.",[13,707,708,709,712,713,716,717,267],{},"The below CI config will not only create a pages deployment when there is a commit to the default branch, but also for any commit to branches named ",[67,710,711],{},"v1",", ",[67,714,715],{},"v2",", or ",[67,718,719],{},"v3",[75,721,723],{"className":77,"code":722,"language":79,"meta":80,"style":80},"create-pages:\n  stage: deploy\n  script:\n    - ...\n  variables:\n    PAGES_PREFIX: \"$CI_COMMIT_BRANCH\" # Use the branch name by default\n  pages:\n    path_prefix: \"$PAGES_PREFIX\" # use whatever value is set in the variable\n  environment:\n    name: \"Pages ${PAGES_PREFIX}\"\n    url: $CI_PAGES_URL\n  artifacts:\n    paths:\n    - public\n  rules:\n    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH\n      variables:\n        PAGES_PREFIX: '' # No prefix\n    - if: $CI_COMMIT_BRANCH == 'v1'\n    - if: $CI_COMMIT_BRANCH == 'v2'\n    - if: $CI_COMMIT_BRANCH == 'v3'\n\n",[67,724,725,731,739,745,751,758,771,777,789,795,804,812,819,826,833,839,849,856,869,880,891],{"__ignoreMap":80},[84,726,727,729],{"class":86,"line":87},[84,728,91],{"class":90},[84,730,95],{"class":94},[84,732,733,735,737],{"class":86,"line":98},[84,734,101],{"class":90},[84,736,104],{"class":94},[84,738,108],{"class":107},[84,740,741,743],{"class":86,"line":111},[84,742,114],{"class":90},[84,744,95],{"class":94},[84,746,747,749],{"class":86,"line":119},[84,748,122],{"class":94},[84,750,235],{"class":234},[84,752,753,756],{"class":86,"line":128},[84,754,755],{"class":90},"  variables",[84,757,95],{"class":94},[84,759,760,763,765,768],{"class":86,"line":137},[84,761,762],{"class":90},"    PAGES_PREFIX",[84,764,104],{"class":94},[84,766,767],{"class":107},"\"$CI_COMMIT_BRANCH\"",[84,769,770],{"class":148}," # Use the branch name by default\n",[84,772,773,775],{"class":86,"line":152},[84,774,131],{"class":90},[84,776,95],{"class":94},[84,778,779,781,783,786],{"class":86,"line":160},[84,780,251],{"class":90},[84,782,104],{"class":94},[84,784,785],{"class":107},"\"$PAGES_PREFIX\"",[84,787,788],{"class":148}," # use whatever value is set in the variable\n",[84,790,791,793],{"class":86,"line":393},[84,792,670],{"class":90},[84,794,95],{"class":94},[84,796,797,799,801],{"class":86,"line":400},[84,798,678],{"class":90},[84,800,104],{"class":94},[84,802,803],{"class":107},"\"Pages ${PAGES_PREFIX}\"\n",[84,805,806,808,810],{"class":86,"line":412},[84,807,689],{"class":90},[84,809,104],{"class":94},[84,811,694],{"class":107},[84,813,814,817],{"class":86,"line":419},[84,815,816],{"class":90},"  artifacts",[84,818,95],{"class":94},[84,820,821,824],{"class":86,"line":426},[84,822,823],{"class":90},"    paths",[84,825,95],{"class":94},[84,827,828,830],{"class":86,"line":432},[84,829,122],{"class":94},[84,831,832],{"class":107},"public\n",[84,834,835,837],{"class":86,"line":438},[84,836,155],{"class":90},[84,838,95],{"class":94},[84,840,841,843,845,847],{"class":86,"line":447},[84,842,122],{"class":94},[84,844,165],{"class":90},[84,846,104],{"class":94},[84,848,409],{"class":107},[84,850,851,854],{"class":86,"line":454},[84,852,853],{"class":90},"      variables",[84,855,95],{"class":94},[84,857,858,861,863,866],{"class":86,"line":461},[84,859,860],{"class":90},"        PAGES_PREFIX",[84,862,104],{"class":94},[84,864,865],{"class":107},"''",[84,867,868],{"class":148}," # No prefix\n",[84,870,871,873,875,877],{"class":86,"line":468},[84,872,122],{"class":94},[84,874,165],{"class":90},[84,876,104],{"class":94},[84,878,879],{"class":107},"$CI_COMMIT_BRANCH == 'v1'\n",[84,881,882,884,886,888],{"class":86,"line":479},[84,883,122],{"class":94},[84,885,165],{"class":90},[84,887,104],{"class":94},[84,889,890],{"class":107},"$CI_COMMIT_BRANCH == 'v2'\n",[84,892,893,895,897,899],{"class":86,"line":492},[84,894,122],{"class":94},[84,896,165],{"class":90},[84,898,104],{"class":94},[84,900,901],{"class":107},"$CI_COMMIT_BRANCH == 'v3'\n",[13,903,904,905,908],{},"By using the ",[67,906,907],{},"$CI_COMMIT_BRANCH"," variable as the path_prefix value, each of these branches will deploy their documentation to their own sub-path of your website:",[910,911,912,919,925],"ul",{},[41,913,914,915],{},"The branch named v1 has its docs published to ",[916,917,918],"my-domain",{},"/v1.",[41,920,921,922],{},"The branch named v2 has its docs published to ",[916,923,924],{},"/v2.",[41,926,927,928],{},"The branch named v3 has its docs published to ",[916,929,930],{},"/v3.",[13,932,933],{},"A new commit to one of these branches will then trigger a new deployment to its respective path, keeping the documentation of multiple versions up to date.",[13,935,936],{},"The Parallel Deployments feature is a significant upgrade to GitLab Pages, offering a more flexible and efficient way to manage your knowledge. Whether you're working on a small project or a large-scale site with multiple versions, this new capability will make your workflow smoother and more efficient",[938,939,940],"blockquote",{},[13,941,942,943,948],{},"Visit our ",[16,944,947],{"href":945,"rel":946},"https://docs.gitlab.com/user/project/pages/#create-multiple-deployments",[],"Parallel Deployments documentation"," to get started today!",[26,950,952],{"id":951},"feedback","Feedback",[13,954,955,956,961],{},"Share your ideas and other comments in our ",[16,957,960],{"href":958,"rel":959},"https://gitlab.com/gitlab-org/gitlab/-/issues/482040",[],"feedback issue","!",[963,964,965],"style",{},"html pre.shiki code .shJU0, html code.shiki .shJU0{--shiki-default:#22863A}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}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);}html pre.shiki code .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}",{"title":80,"searchDepth":98,"depth":98,"links":967},[968,969,970,971],{"id":28,"depth":111,"text":29},{"id":35,"depth":111,"text":36},{"id":61,"depth":111,"text":62},{"id":701,"depth":98,"text":702,"children":972},[973],{"id":951,"depth":111,"text":952},"product","2024-09-23","GitLab Pages helps organizations reap the rewards of knowledge management, including better collaboration and accessibility. Learn how to use a new feature, Parallel Deployments.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749674550/Blog/Hero%20Images/blog-image-template-1800x945__1_.png",{},"/en-us/blog/gitlab-pages-features-review-apps-and-multiple-website-deployment",{"title":5,"description":976,"ogTitle":5,"ogDescription":976,"noIndex":979,"ogImage":980,"ogUrl":984,"ogSiteName":985,"ogType":986,"canonicalUrls":984},"https://about.gitlab.com/blog/gitlab-pages-features-review-apps-and-multiple-website-deployment","https://about.gitlab.com","article","gitlab-pages-features-review-apps-and-multiple-website-deployment","en-us/blog/gitlab-pages-features-review-apps-and-multiple-website-deployment",[990,991,992,993,974,994],"agile","CI/CD","DevSecOps","features","tutorial","BlogPost","2025-04-09","jIsuN5r7WIvz-lWVEfUvlEN93suf6fIi272Y-jbHnp8",{"logo":999,"freeTrial":1004,"sales":1009,"login":1014,"items":1019,"search":1345,"minimal":1376,"duo":1395,"switchNav":1404,"pricingDeployment":1415},{"config":1000},{"href":1001,"dataGaName":1002,"dataGaLocation":1003},"/","gitlab logo","header",{"text":1005,"config":1006},"Get free trial",{"href":1007,"dataGaName":1008,"dataGaLocation":1003},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":1010,"config":1011},"Request a demo",{"href":1012,"dataGaName":1013,"dataGaLocation":1003},"/sales/?contact-topic=request-demo","sales",{"text":1015,"config":1016},"Sign in",{"href":1017,"dataGaName":1018,"dataGaLocation":1003},"https://gitlab.com/users/sign_in/","sign in",[1020,1049,1148,1153,1267,1323],{"text":1021,"config":1022,"menu":1024},"Platform",{"dataNavLevelOne":1023},"platform",{"type":1025,"columns":1026},"cards",[1027,1033,1041],{"title":1021,"description":1028,"link":1029},"The intelligent orchestration platform for DevSecOps",{"text":1030,"config":1031},"Explore our Platform",{"href":1032,"dataGaName":1023,"dataGaLocation":1003},"/platform/",{"title":1034,"description":1035,"link":1036},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":1037,"config":1038},"Meet GitLab Duo",{"href":1039,"dataGaName":1040,"dataGaLocation":1003},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":1042,"description":1043,"link":1044},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":1045,"config":1046},"Learn more",{"href":1047,"dataGaName":1048,"dataGaLocation":1003},"/why-gitlab/","why gitlab",{"text":1050,"left":415,"config":1051,"menu":1053},"Product",{"dataNavLevelOne":1052},"solutions",{"type":1054,"link":1055,"columns":1059,"feature":1127},"lists",{"text":1056,"config":1057},"View all Solutions",{"href":1058,"dataGaName":1052,"dataGaLocation":1003},"/solutions/",[1060,1083,1106],{"title":1061,"description":1062,"link":1063,"items":1068},"Automation","CI/CD and automation to accelerate deployment",{"config":1064},{"icon":1065,"href":1066,"dataGaName":1067,"dataGaLocation":1003},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[1069,1072,1075,1079],{"text":991,"config":1070},{"href":1071,"dataGaLocation":1003,"dataGaName":991},"/solutions/continuous-integration/",{"text":1034,"config":1073},{"href":1039,"dataGaLocation":1003,"dataGaName":1074},"gitlab duo agent platform - product menu",{"text":1076,"config":1077},"Source Code Management",{"href":1078,"dataGaLocation":1003,"dataGaName":1076},"/solutions/source-code-management/",{"text":1080,"config":1081},"Automated Software Delivery",{"href":1066,"dataGaLocation":1003,"dataGaName":1082},"Automated software delivery",{"title":1084,"description":1085,"link":1086,"items":1091},"Security","Deliver code faster without compromising security",{"config":1087},{"href":1088,"dataGaName":1089,"dataGaLocation":1003,"icon":1090},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[1092,1096,1101],{"text":1093,"config":1094},"Application Security Testing",{"href":1088,"dataGaName":1095,"dataGaLocation":1003},"Application security testing",{"text":1097,"config":1098},"Software Supply Chain Security",{"href":1099,"dataGaLocation":1003,"dataGaName":1100},"/solutions/supply-chain/","Software supply chain security",{"text":1102,"config":1103},"Software Compliance",{"href":1104,"dataGaName":1105,"dataGaLocation":1003},"/solutions/software-compliance/","software compliance",{"title":1107,"link":1108,"items":1113},"Measurement",{"config":1109},{"icon":1110,"href":1111,"dataGaName":1112,"dataGaLocation":1003},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[1114,1118,1122],{"text":1115,"config":1116},"Visibility & Measurement",{"href":1111,"dataGaLocation":1003,"dataGaName":1117},"Visibility and Measurement",{"text":1119,"config":1120},"Value Stream Management",{"href":1121,"dataGaLocation":1003,"dataGaName":1119},"/solutions/value-stream-management/",{"text":1123,"config":1124},"Analytics & Insights",{"href":1125,"dataGaLocation":1003,"dataGaName":1126},"/solutions/analytics-and-insights/","Analytics and insights",{"title":1128,"type":1054,"items":1129},"GitLab for",[1130,1136,1142],{"text":1131,"config":1132},"Enterprise",{"icon":1133,"href":1134,"dataGaLocation":1003,"dataGaName":1135},"Building","/enterprise/","enterprise",{"text":1137,"config":1138},"Small Business",{"icon":1139,"href":1140,"dataGaLocation":1003,"dataGaName":1141},"Work","/small-business/","small business",{"text":1143,"config":1144},"Public Sector",{"icon":1145,"href":1146,"dataGaLocation":1003,"dataGaName":1147},"Organization","/solutions/public-sector/","public sector",{"text":1149,"config":1150},"Pricing",{"href":1151,"dataGaName":1152,"dataGaLocation":1003,"dataNavLevelOne":1152},"/pricing/","pricing",{"text":1154,"config":1155,"menu":1157},"Resources",{"dataNavLevelOne":1156},"resources",{"type":1054,"link":1158,"columns":1162,"feature":1256},{"text":1159,"config":1160},"View all resources",{"href":1161,"dataGaName":1156,"dataGaLocation":1003},"/resources/",[1163,1196,1223],{"title":1164,"items":1165},"Getting started",[1166,1171,1176,1181,1186,1191],{"text":1167,"config":1168},"Install",{"href":1169,"dataGaName":1170,"dataGaLocation":1003},"/install/","install",{"text":1172,"config":1173},"Quick start guides",{"href":1174,"dataGaName":1175,"dataGaLocation":1003},"/get-started/","quick setup checklists",{"text":1177,"config":1178},"Learn",{"href":1179,"dataGaLocation":1003,"dataGaName":1180},"https://university.gitlab.com/","learn",{"text":1182,"config":1183},"Product documentation",{"href":1184,"dataGaName":1185,"dataGaLocation":1003},"https://docs.gitlab.com/","product documentation",{"text":1187,"config":1188},"Best practice videos",{"href":1189,"dataGaName":1190,"dataGaLocation":1003},"/getting-started-videos/","best practice videos",{"text":1192,"config":1193},"Integrations",{"href":1194,"dataGaName":1195,"dataGaLocation":1003},"/integrations/","integrations",{"title":1197,"items":1198},"Discover",[1199,1204,1209,1214,1218],{"text":1200,"config":1201},"Customer success stories",{"href":1202,"dataGaName":1203,"dataGaLocation":1003},"/customers/","customer success stories",{"text":1205,"config":1206},"Blog",{"href":1207,"dataGaName":1208,"dataGaLocation":1003},"/blog/","blog",{"text":1210,"config":1211},"Demo Hub",{"href":1212,"dataGaName":1213,"dataGaLocation":1003},"/demo-hub/","demo hub",{"text":1215,"config":1216},"The Source",{"href":1217,"dataGaName":1208,"dataGaLocation":1003},"/the-source/",{"text":1219,"config":1220},"Remote",{"href":1221,"dataGaName":1222,"dataGaLocation":1003},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":1224,"items":1225},"Connect",[1226,1231,1236,1241,1246,1251],{"text":1227,"config":1228},"GitLab Services",{"href":1229,"dataGaName":1230,"dataGaLocation":1003},"/services/","services",{"text":1232,"config":1233},"Contribute",{"href":1234,"dataGaName":1235,"dataGaLocation":1003},"https://contributors.gitlab.com","contribute",{"text":1237,"config":1238},"Community",{"href":1239,"dataGaName":1240,"dataGaLocation":1003},"/community/","community",{"text":1242,"config":1243},"Forum",{"href":1244,"dataGaName":1245,"dataGaLocation":1003},"https://forum.gitlab.com/","forum",{"text":1247,"config":1248},"Events",{"href":1249,"dataGaName":1250,"dataGaLocation":1003},"/events/","events",{"text":1252,"config":1253},"Partners",{"href":1254,"dataGaName":1255,"dataGaLocation":1003},"/partners/","partners",{"config":1257,"title":1260,"text":1261,"link":1262},{"background":1258,"textColor":1259},"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":1263,"config":1264},"Read the latest",{"href":1265,"dataGaName":1266,"dataGaLocation":1003},"/whats-new/","whats new",{"text":1268,"config":1269,"menu":1271},"Company",{"dataNavLevelOne":1270},"company",{"type":1054,"columns":1272},[1273],{"items":1274},[1275,1280,1286,1288,1293,1298,1303,1308,1313,1318],{"text":1276,"config":1277},"About",{"href":1278,"dataGaName":1279,"dataGaLocation":1003},"/company/","about",{"text":1281,"config":1282,"footerGa":1285},"Jobs",{"href":1283,"dataGaName":1284,"dataGaLocation":1003},"/jobs/","jobs",{"dataGaName":1284},{"text":1247,"config":1287},{"href":1249,"dataGaName":1250,"dataGaLocation":1003},{"text":1289,"config":1290},"Leadership",{"href":1291,"dataGaName":1292,"dataGaLocation":1003},"/company/team/e-group/","leadership",{"text":1294,"config":1295},"Handbook",{"href":1296,"dataGaName":1297,"dataGaLocation":1003},"https://handbook.gitlab.com/","handbook",{"text":1299,"config":1300},"Investor relations",{"href":1301,"dataGaName":1302,"dataGaLocation":1003},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":1304,"config":1305},"Trust Center",{"href":1306,"dataGaName":1307,"dataGaLocation":1003},"/security/","trust center",{"text":1309,"config":1310},"AI Transparency Center",{"href":1311,"dataGaName":1312,"dataGaLocation":1003},"/ai-transparency-center/","ai transparency center",{"text":1314,"config":1315},"Newsletter",{"href":1316,"dataGaName":1317,"dataGaLocation":1003},"/company/contact/#contact-forms","newsletter",{"text":1319,"config":1320},"Press",{"href":1321,"dataGaName":1322,"dataGaLocation":1003},"/press/","press",{"text":1324,"config":1325,"menu":1326},"Contact us",{"dataNavLevelOne":1270},{"type":1054,"columns":1327},[1328],{"items":1329},[1330,1335,1340],{"text":1331,"config":1332},"Talk to sales",{"href":1333,"dataGaName":1334,"dataGaLocation":1003},"/sales/","talk to sales",{"text":1336,"config":1337},"Support portal",{"href":1338,"dataGaName":1339,"dataGaLocation":1003},"https://support.gitlab.com/hc/en-us","support portal",{"text":1341,"config":1342},"Customer portal",{"href":1343,"dataGaName":1344,"dataGaLocation":1003},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":1346,"login":1347,"suggestions":1354},"Close",{"text":1348,"link":1349},"To search repositories and projects, login to",{"text":1350,"config":1351},"gitlab.com",{"href":1017,"dataGaName":1352,"dataGaLocation":1353},"search login","search",{"text":1355,"default":1356},"Suggestions",[1357,1359,1363,1365,1369,1373],{"text":1034,"config":1358},{"href":1039,"dataGaName":1034,"dataGaLocation":1353},{"text":1360,"config":1361},"Code Suggestions (AI)",{"href":1362,"dataGaName":1360,"dataGaLocation":1353},"/solutions/code-suggestions/",{"text":991,"config":1364},{"href":1071,"dataGaName":991,"dataGaLocation":1353},{"text":1366,"config":1367},"GitLab on AWS",{"href":1368,"dataGaName":1366,"dataGaLocation":1353},"/partners/technology-partners/aws/",{"text":1370,"config":1371},"GitLab on Google Cloud",{"href":1372,"dataGaName":1370,"dataGaLocation":1353},"/partners/technology-partners/google-cloud-platform/",{"text":1374,"config":1375},"Why GitLab?",{"href":1047,"dataGaName":1374,"dataGaLocation":1353},{"freeTrial":1377,"mobileIcon":1382,"desktopIcon":1387,"secondaryButton":1390},{"text":1378,"config":1379},"Start free trial",{"href":1380,"dataGaName":1008,"dataGaLocation":1381},"https://gitlab.com/-/trials/new/","nav",{"altText":1383,"config":1384},"Gitlab Icon",{"src":1385,"dataGaName":1386,"dataGaLocation":1381},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":1383,"config":1388},{"src":1389,"dataGaName":1386,"dataGaLocation":1381},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":1391,"config":1392},"Get Started",{"href":1393,"dataGaName":1394,"dataGaLocation":1381},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":1396,"mobileIcon":1400,"desktopIcon":1402},{"text":1397,"config":1398},"Learn more about GitLab Duo",{"href":1039,"dataGaName":1399,"dataGaLocation":1381},"gitlab duo",{"altText":1383,"config":1401},{"src":1385,"dataGaName":1386,"dataGaLocation":1381},{"altText":1383,"config":1403},{"src":1389,"dataGaName":1386,"dataGaLocation":1381},{"button":1405,"mobileIcon":1410,"desktopIcon":1412},{"text":1406,"config":1407},"/switch",{"href":1408,"dataGaName":1409,"dataGaLocation":1381},"#contact","switch",{"altText":1383,"config":1411},{"src":1385,"dataGaName":1386,"dataGaLocation":1381},{"altText":1383,"config":1413},{"src":1414,"dataGaName":1386,"dataGaLocation":1381},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":1416,"mobileIcon":1421,"desktopIcon":1423},{"text":1417,"config":1418},"Back to pricing",{"href":1151,"dataGaName":1419,"dataGaLocation":1381,"icon":1420},"back to pricing","GoBack",{"altText":1383,"config":1422},{"src":1385,"dataGaName":1386,"dataGaLocation":1381},{"altText":1383,"config":1424},{"src":1389,"dataGaName":1386,"dataGaLocation":1381},{"title":1426,"titleMobile":1427,"button":1428,"config":1433},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":1045,"config":1429},{"href":1430,"dataGaName":1431,"dataGaLocation":1432},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":1434,"disabled":979},"release",{"data":1436},{"text":1437,"source":1438,"edit":1444,"contribute":1449,"config":1454,"items":1459,"minimal":1668},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":1439,"config":1440},"View page source",{"href":1441,"dataGaName":1442,"dataGaLocation":1443},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1445,"config":1446},"Edit this page",{"href":1447,"dataGaName":1448,"dataGaLocation":1443},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1450,"config":1451},"Please contribute",{"href":1452,"dataGaName":1453,"dataGaLocation":1443},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1455,"facebook":1456,"youtube":1457,"linkedin":1458},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1460,1507,1560,1604,1636],{"title":1149,"links":1461,"subMenu":1476},[1462,1466,1471],{"text":1463,"config":1464},"View plans",{"href":1151,"dataGaName":1465,"dataGaLocation":1443},"view plans",{"text":1467,"config":1468},"Why Premium?",{"href":1469,"dataGaName":1470,"dataGaLocation":1443},"/pricing/premium/","why premium",{"text":1472,"config":1473},"Why Ultimate?",{"href":1474,"dataGaName":1475,"dataGaLocation":1443},"/pricing/ultimate/","why ultimate",[1477],{"title":1478,"links":1479},"Contact Us",[1480,1483,1485,1487,1492,1497,1502],{"text":1481,"config":1482},"Contact sales",{"href":1333,"dataGaName":1013,"dataGaLocation":1443},{"text":1336,"config":1484},{"href":1338,"dataGaName":1339,"dataGaLocation":1443},{"text":1341,"config":1486},{"href":1343,"dataGaName":1344,"dataGaLocation":1443},{"text":1488,"config":1489},"Status",{"href":1490,"dataGaName":1491,"dataGaLocation":1443},"https://status.gitlab.com/","status",{"text":1493,"config":1494},"Terms of use",{"href":1495,"dataGaName":1496,"dataGaLocation":1443},"/terms/","terms of use",{"text":1498,"config":1499},"Privacy statement",{"href":1500,"dataGaName":1501,"dataGaLocation":1443},"/privacy/","privacy statement",{"text":1503,"config":1504},"Cookie preferences",{"dataGaName":1505,"dataGaLocation":1443,"id":1506,"isOneTrustButton":415},"cookie preferences","ot-sdk-btn",{"title":1050,"links":1508,"subMenu":1517},[1509,1513],{"text":1510,"config":1511},"DevSecOps platform",{"href":1032,"dataGaName":1512,"dataGaLocation":1443},"devsecops platform",{"text":1514,"config":1515},"AI-Assisted Development",{"href":1039,"dataGaName":1516,"dataGaLocation":1443},"ai-assisted development",[1518],{"title":1519,"links":1520},"Topics",[1521,1526,1531,1536,1541,1545,1550,1555],{"text":1522,"config":1523},"CICD",{"href":1524,"dataGaName":1525,"dataGaLocation":1443},"/topics/ci-cd/","cicd",{"text":1527,"config":1528},"GitOps",{"href":1529,"dataGaName":1530,"dataGaLocation":1443},"/topics/gitops/","gitops",{"text":1532,"config":1533},"DevOps",{"href":1534,"dataGaName":1535,"dataGaLocation":1443},"/topics/devops/","devops",{"text":1537,"config":1538},"Version Control",{"href":1539,"dataGaName":1540,"dataGaLocation":1443},"/topics/version-control/","version control",{"text":992,"config":1542},{"href":1543,"dataGaName":1544,"dataGaLocation":1443},"/topics/devsecops/","devsecops",{"text":1546,"config":1547},"Cloud Native",{"href":1548,"dataGaName":1549,"dataGaLocation":1443},"/topics/cloud-native/","cloud native",{"text":1551,"config":1552},"AI for Coding",{"href":1553,"dataGaName":1554,"dataGaLocation":1443},"/topics/devops/ai-for-coding/","ai for coding",{"text":1556,"config":1557},"Agentic AI",{"href":1558,"dataGaName":1559,"dataGaLocation":1443},"/topics/agentic-ai/","agentic ai",{"title":1561,"links":1562},"Solutions",[1563,1565,1567,1572,1576,1579,1583,1586,1588,1591,1594,1599],{"text":1093,"config":1564},{"href":1088,"dataGaName":1093,"dataGaLocation":1443},{"text":1082,"config":1566},{"href":1066,"dataGaName":1067,"dataGaLocation":1443},{"text":1568,"config":1569},"Agile development",{"href":1570,"dataGaName":1571,"dataGaLocation":1443},"/solutions/agile-delivery/","agile delivery",{"text":1573,"config":1574},"SCM",{"href":1078,"dataGaName":1575,"dataGaLocation":1443},"source code management",{"text":1522,"config":1577},{"href":1071,"dataGaName":1578,"dataGaLocation":1443},"continuous integration & delivery",{"text":1580,"config":1581},"Value stream management",{"href":1121,"dataGaName":1582,"dataGaLocation":1443},"value stream management",{"text":1527,"config":1584},{"href":1585,"dataGaName":1530,"dataGaLocation":1443},"/solutions/gitops/",{"text":1131,"config":1587},{"href":1134,"dataGaName":1135,"dataGaLocation":1443},{"text":1589,"config":1590},"Small business",{"href":1140,"dataGaName":1141,"dataGaLocation":1443},{"text":1592,"config":1593},"Public sector",{"href":1146,"dataGaName":1147,"dataGaLocation":1443},{"text":1595,"config":1596},"Education",{"href":1597,"dataGaName":1598,"dataGaLocation":1443},"/solutions/education/","education",{"text":1600,"config":1601},"Financial services",{"href":1602,"dataGaName":1603,"dataGaLocation":1443},"/solutions/finance/","financial services",{"title":1154,"links":1605},[1606,1608,1610,1612,1615,1617,1620,1622,1624,1626,1628,1630,1632,1634],{"text":1167,"config":1607},{"href":1169,"dataGaName":1170,"dataGaLocation":1443},{"text":1172,"config":1609},{"href":1174,"dataGaName":1175,"dataGaLocation":1443},{"text":1177,"config":1611},{"href":1179,"dataGaName":1180,"dataGaLocation":1443},{"text":1182,"config":1613},{"href":1184,"dataGaName":1614,"dataGaLocation":1443},"docs",{"text":1205,"config":1616},{"href":1207,"dataGaName":1208,"dataGaLocation":1443},{"text":1618,"config":1619},"What's new",{"href":1265,"dataGaName":1266,"dataGaLocation":1443},{"text":1200,"config":1621},{"href":1202,"dataGaName":1203,"dataGaLocation":1443},{"text":1219,"config":1623},{"href":1221,"dataGaName":1222,"dataGaLocation":1443},{"text":1227,"config":1625},{"href":1229,"dataGaName":1230,"dataGaLocation":1443},{"text":1232,"config":1627},{"href":1234,"dataGaName":1235,"dataGaLocation":1443},{"text":1237,"config":1629},{"href":1239,"dataGaName":1240,"dataGaLocation":1443},{"text":1242,"config":1631},{"href":1244,"dataGaName":1245,"dataGaLocation":1443},{"text":1247,"config":1633},{"href":1249,"dataGaName":1250,"dataGaLocation":1443},{"text":1252,"config":1635},{"href":1254,"dataGaName":1255,"dataGaLocation":1443},{"title":1268,"links":1637},[1638,1640,1642,1644,1646,1648,1652,1657,1659,1661,1663],{"text":1276,"config":1639},{"href":1278,"dataGaName":1270,"dataGaLocation":1443},{"text":1281,"config":1641},{"href":1283,"dataGaName":1284,"dataGaLocation":1443},{"text":1289,"config":1643},{"href":1291,"dataGaName":1292,"dataGaLocation":1443},{"text":1294,"config":1645},{"href":1296,"dataGaName":1297,"dataGaLocation":1443},{"text":1299,"config":1647},{"href":1301,"dataGaName":1302,"dataGaLocation":1443},{"text":1649,"config":1650},"Sustainability",{"href":1651,"dataGaName":1649,"dataGaLocation":1443},"/sustainability/",{"text":1653,"config":1654},"Diversity, inclusion and belonging (DIB)",{"href":1655,"dataGaName":1656,"dataGaLocation":1443},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":1304,"config":1658},{"href":1306,"dataGaName":1307,"dataGaLocation":1443},{"text":1314,"config":1660},{"href":1316,"dataGaName":1317,"dataGaLocation":1443},{"text":1319,"config":1662},{"href":1321,"dataGaName":1322,"dataGaLocation":1443},{"text":1664,"config":1665},"Modern Slavery Transparency Statement",{"href":1666,"dataGaName":1667,"dataGaLocation":1443},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1669},[1670,1673,1676],{"text":1671,"config":1672},"Terms",{"href":1495,"dataGaName":1496,"dataGaLocation":1443},{"text":1674,"config":1675},"Cookies",{"dataGaName":1505,"dataGaLocation":1443,"id":1506,"isOneTrustButton":415},{"text":1677,"config":1678},"Privacy",{"href":1500,"dataGaName":1501,"dataGaLocation":1443},[1680,1694],{"id":1681,"title":7,"body":978,"config":1682,"content":1684,"description":978,"extension":1688,"meta":1689,"navigation":415,"path":1690,"seo":1691,"stem":1692,"__hash__":1693},"blogAuthors/en-us/blog/authors/matthew-macfarlane.yml",{"template":1683},"BlogAuthor",{"name":7,"config":1685},{"headshot":1686,"ctfId":1687},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663160/Blog/Author%20Headshots/matthew_mcfarlane_headshot.png","6dyod6DIfkxY5CognC5g2N","yml",{},"/en-us/blog/authors/matthew-macfarlane",{},"en-us/blog/authors/matthew-macfarlane","vE0tWG6T4IqZAY0adk9liiZWKrGOc10DZqsEtyKmTX4",{"id":1695,"title":8,"body":978,"config":1696,"content":1697,"description":978,"extension":1688,"meta":1701,"navigation":415,"path":1702,"seo":1703,"stem":1704,"__hash__":1705},"blogAuthors/en-us/blog/authors/janis-altherr.yml",{"template":1683},{"name":8,"config":1698},{"headshot":1699,"ctfId":1700},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663163/Blog/Author%20Headshots/janis-headshot.jpg","janis",{},"/en-us/blog/authors/janis-altherr",{},"en-us/blog/authors/janis-altherr","IypsWlKRRAD566nOfIQF0sRhJjrEm0E-PxjlLJ0XGKE",[1707,1713,1717],{"title":1708,"description":1709,"heroImage":1710,"category":974,"date":1711,"authors":978,"slug":978,"externalUrl":1712},"GitLab Patch Release: 19.2.2, 19.1.4, 19.0.6","Learn about this latest patch release for Community Edition and Enterprise Edition.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661926/Blog/Hero%20Images/security-patch-blog-image-r2-0506-700x400-fy25_2x.jpg","2026-08-12","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-2-released/",{"title":1714,"description":1709,"heroImage":1710,"category":974,"date":1715,"authors":978,"slug":978,"externalUrl":1716}," GitLab Patch Release: 19.2.1, 19.1.3, 19.0.5","2026-07-29","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-1-released/",{"title":1718,"description":1719,"heroImage":1720,"category":974,"date":1721,"authors":1722,"slug":1724,"externalUrl":978},"Automate work item assignment with a \"Work item created\" trigger","Our step-by-step guide walks through this AI capability, which enables instant, scalable triage without manual intervention.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-07-20",[1723],"Cesar Saavedra","how-to-use-a-work-item-created-trigger",{"promotions":1726},[1727,1741,1752,1764],{"id":1728,"categories":1729,"header":1731,"text":1732,"button":1733,"image":1738},"ai-modernization",[1730],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1734,"config":1735},"Get your AI maturity score",{"href":1736,"dataGaName":1737,"dataGaLocation":1208},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1739},{"src":1740},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1742,"categories":1743,"header":1744,"text":1732,"button":1745,"image":1749},"devops-modernization",[974,1544],"Are you just managing tools or shipping innovation?",{"text":1746,"config":1747},"Get your DevOps maturity score",{"href":1748,"dataGaName":1737,"dataGaLocation":1208},"/assessments/devops-modernization-assessment/",{"config":1750},{"src":1751},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1753,"categories":1754,"header":1756,"text":1732,"button":1757,"image":1761},"security-modernization",[1755],"security","Are you trading speed for security?",{"text":1758,"config":1759},"Get your security maturity score",{"href":1760,"dataGaName":1737,"dataGaLocation":1208},"/assessments/security-modernization-assessment/",{"config":1762},{"src":1763},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1765,"paths":1766,"header":1769,"text":1770,"button":1771,"image":1776},"github-azure-migration",[1767,1768],"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":1772,"config":1773},"See how GitLab compares to GitHub",{"href":1774,"dataGaName":1775,"dataGaLocation":1208},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1777},{"src":1751},{"header":1779,"blurb":1780,"button":1781,"secondaryButton":1786},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1782,"config":1783},"Get your free trial",{"href":1784,"dataGaName":1008,"dataGaLocation":1785},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":1481,"config":1787},{"href":1333,"dataGaName":1013,"dataGaLocation":1785},1786803760997]