<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="description" content="Go from Startup to Scaleup. Get our plan for free for a maximum of 12 months and 50 seats for your developers."><link rel="icon" type="image/svg+xml" href="/favicon.svg" media="(prefers-color-scheme: light)"><link rel="icon" type="image/svg+xml" href="/favicon-dark.svg" media="(prefers-color-scheme: dark)"><link rel="preload" href="/fonts/inter-latin-wght-normal.woff2" as="font" type="font/woff2" crossorigin><title>Startup Program | Mergify</title><link rel="canonical" href="https://mergify.com/startups"><!-- OpenGraph --><meta property="og:type" content="website"><meta property="og:title" content="Startup Program | Mergify"><meta property="og:description" content="Go from Startup to Scaleup. Get our plan for free for a maximum of 12 months and 50 seats for your developers."><meta property="og:url" content="https://mergify.com/startups"><meta property="og:image" content="https://mergify.com/og/startups.png"><meta property="og:image:width" content="1200"><meta property="og:image:height" content="630"><meta property="og:site_name" content="Mergify"><!-- Twitter --><meta name="twitter:card" content="summary_large_image"><meta name="twitter:site" content="@mergifyio"><meta name="twitter:title" content="Startup Program | Mergify"><meta name="twitter:description" content="Go from Startup to Scaleup. Get our plan for free for a maximum of 12 months and 50 seats for your developers."><meta name="twitter:image" content="https://mergify.com/og/startups.png"><meta name="astro-view-transitions-enabled" content="true"><meta name="astro-view-transitions-fallback" content="animate"><script type="module" src="/_astro/ClientRouter.astro_astro_type_script_index_0_lang.DW-LBy1z.js"></script><script defer data-domain="mergify.com" src="https://plausible.io/js/script.outbound-links.tagged-events.js"></script><script>
      window.plausible =
        window.plausible ||
        function () {
          (window.plausible.q = window.plausible.q || []).push(arguments);
        };
    </script><script>
      if (!window.__plainLoaded) {
        function loadPlain() {
          if (window.__plainLoaded) return;
          window.__plainLoaded = true;
          ['scroll','click','touchstart','keydown'].forEach(function(e) {
            document.removeEventListener(e, loadPlain);
          });
          var s = document.createElement('script');
          s.async = true;
          s.onload = function(){
            Plain.init({
              appId: 'liveChatApp_01JAT3XT9PMMDGVSNMV5JBW5E2',
              requireAuthentication: false,
              hideBranding: true,
              position: { bottom: '20px', right: '20px' }
            });
          };
          s.src = 'https://chat.cdn-plain.com/index.js';
          document.head.appendChild(s);
        }
        ['scroll','click','touchstart','keydown'].forEach(function(e) {
          document.addEventListener(e, loadPlain, { once: true, passive: true });
        });
      }
    </script><style>.logo-bar-quote[data-astro-cid-hgxduojl]{opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s,visibility .2s}.logo-bar-item[data-astro-cid-hgxduojl][data-open=true] .logo-bar-quote[data-astro-cid-hgxduojl]{opacity:1;visibility:visible;pointer-events:auto}@media (prefers-reduced-motion:reduce){.logo-bar-quote[data-astro-cid-hgxduojl]{transition:none}}
</style><link rel="stylesheet" href="/_astro/BaseLayout.BE18-G8M.css"></head><body class="min-h-screen flex flex-col"><a href="#main" class="sr-only focus:not-sr-only focus:fixed focus:top-3 focus:left-3 focus:z-[100] focus:rounded-lg focus:bg-dark focus:px-4 focus:py-2 focus:text-sm focus:font-semibold focus:text-white focus:outline-none focus:ring-2 focus:ring-white">Skip to content</a><div data-astro-transition-persist="hiring-banner" id="hiring-banner" class="hiring-banner" aria-hidden="true" data-astro-cid-m46iqzaz><a class="hiring-banner__link plausible-event-name=Hiring+Banner+Click" href="/careers" data-astro-cid-m46iqzaz><span class="hiring-banner__flag" aria-hidden="true" data-astro-cid-m46iqzaz>🇫🇷</span><span class="hiring-banner__label" data-astro-cid-m46iqzaz>We&#39;re hiring a Staff Software Engineer in France</span><span class="hiring-banner__arrow" aria-hidden="true" data-astro-cid-m46iqzaz>→</span></a><button id="hiring-banner-dismiss" class="hiring-banner__dismiss" type="button" aria-label="Dismiss hiring banner" data-astro-cid-m46iqzaz>×</button></div><script>
(function () {
  if (window.__hiringBannerInit) return;
  window.__hiringBannerInit = true;

  var GEO_KEY = "mergify_hiring_geo"; // "FR" | "other"
  var DISMISS_KEY = "mergify_hiring_dismissed";

  function el() {
    return document.getElementById("hiring-banner");
  }

  function ls(fn, fallback) {
    try {
      return fn();
    } catch (e) {
      return fallback;
    }
  }

  function dismissed() {
    return ls(function () {
      return localStorage.getItem(DISMISS_KEY) === "1";
    }, false);
  }

  function reveal() {
    var node = el();
    if (!node || dismissed()) return;
    node.setAttribute("aria-hidden", "false");
    // rAF so the transition runs from the collapsed state.
    requestAnimationFrame(function () {
      node.classList.add("is-open");
    });
  }

  function store(fr) {
    ls(function () {
      localStorage.setItem(GEO_KEY, fr ? "FR" : "other");
    });
  }

  function wireDismiss() {
    var btn = document.getElementById("hiring-banner-dismiss");
    if (!btn || btn.dataset.wired) return;
    btn.dataset.wired = "1";
    btn.addEventListener("click", function () {
      var node = el();
      if (node) {
        node.classList.remove("is-open");
        node.setAttribute("aria-hidden", "true");
      }
      ls(function () {
        localStorage.setItem(DISMISS_KEY, "1");
      });
    });
  }

  function decide() {
    if (dismissed()) return;

    // Dev / QA override: ?geo=FR forces the banner, ?geo=US hides it.
    var override = ls(function () {
      return new URLSearchParams(location.search).get("geo");
    }, null);
    if (override) {
      var forced = override.toUpperCase() === "FR";
      store(forced);
      if (forced) reveal();
      return;
    }

    var cached = ls(function () {
      return localStorage.getItem(GEO_KEY);
    }, null);
    if (cached) {
      if (cached === "FR") reveal();
      return;
    }

    // Cloudflare serves /cdn-cgi/trace on every proxied domain. It is an edge
    // feature, so it 404s under astro dev, which is fine: the banner just
    // stays hidden locally (use the ?geo= override to preview).
    fetch("/cdn-cgi/trace")
      .then(function (r) {
        return r.text();
      })
      .then(function (t) {
        var m = t.match(/^loc=([A-Z]{2})/m);
        var fr = !!m && m[1] === "FR";
        store(fr);
        if (fr) reveal();
      })
      .catch(function () {});
  }

  function run() {
    wireDismiss();
    decide();
  }

  if (document.readyState !== "loading") run();
  else document.addEventListener("DOMContentLoaded", run);
})();
</script><div class="hidden lg:block fixed top-0 left-0 right-0 h-3 z-50 backdrop-blur-[5px] [background:linear-gradient(to_bottom,rgba(234,237,240,0.95),rgba(234,237,240,0.7))]" data-astro-cid-nen7h5rs></div><header class="sticky top-0 z-50 lg:pt-3 lg:px-6" data-astro-cid-nen7h5rs><nav id="main-nav" class="relative mx-auto lg:max-w-[var(--container-max-width)] backdrop-blur-[10px] [background:linear-gradient(to_bottom,rgba(234,237,240,0.95),rgba(234,237,240,0.85))] lg:rounded-2xl px-4 lg:px-2 lg:pl-3 flex items-center justify-between h-14 after:absolute after:inset-0 lg:after:rounded-2xl after:border-b lg:after:border after:border-transparent after:pointer-events-none transition-shadow duration-300" data-astro-cid-nen7h5rs><!-- Logo --><a href="/" class="text-dark py-3 -my-3" aria-label="Mergify home" data-brand-menu-trigger aria-haspopup="menu" aria-controls="logo-context-menu" aria-expanded="false" data-astro-cid-nen7h5rs><span><svg width="89" height="24" aria-label="Mergify" width="93" height="25" viewBox="0 0 93 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.4833 17.2093V7.7907H33.2865V9.32367H33.4059C33.6069 8.80451 33.9357 8.3998 34.3923 8.10956C34.8489 7.81523 35.3955 7.66806 36.0322 7.66806C36.6772 7.66806 37.2175 7.81523 37.6532 8.10956C38.093 8.40389 38.4176 8.80859 38.627 9.32367H38.7275C38.9579 8.82086 39.3244 8.42024 39.8271 8.12182C40.3297 7.81931 40.9287 7.66806 41.624 7.66806C42.4994 7.66806 43.2136 7.93582 43.7665 8.47134C44.3236 9.00686 44.6021 9.81423 44.6021 10.8934V17.2093H42.7235V11.0651C42.7235 10.4274 42.5455 9.96548 42.1895 9.67932C41.8334 9.39317 41.4083 9.25009 40.914 9.25009C40.3025 9.25009 39.8271 9.43405 39.4878 9.80196C39.1485 10.1658 38.9789 10.6339 38.9789 11.2062V17.2093H37.1065V10.9486C37.1065 10.4376 36.9432 10.0268 36.6165 9.71611C36.2898 9.40543 35.8646 9.25009 35.341 9.25009C34.985 9.25009 34.6562 9.34207 34.3546 9.52603C34.0572 9.70589 33.8164 9.9573 33.6321 10.2803C33.452 10.6032 33.3619 10.9772 33.3619 11.4024V17.2093H31.4833Z" fill="currentColor"/>
<path d="M51.1024 17.3994C50.1516 17.3994 49.3327 17.2011 48.6458 16.8046C47.963 16.404 47.4352 15.8419 47.0625 15.1183C46.6939 14.3907 46.5096 13.5383 46.5096 12.5613C46.5096 11.5966 46.6939 10.7463 47.0625 10.0104C47.4352 9.27462 47.9546 8.70026 48.6206 8.28738C49.2908 7.8745 50.0741 7.66806 50.9705 7.66806C51.515 7.66806 52.0428 7.75595 52.5538 7.93173C53.0648 8.10751 53.5234 8.38345 53.9297 8.75954C54.336 9.13563 54.6565 9.62414 54.891 10.2251C55.1256 10.8219 55.2429 11.5475 55.2429 12.4019V13.0519H47.5714V11.6783H53.402C53.402 11.1959 53.3014 10.7688 53.1004 10.3968C52.8993 10.0207 52.6166 9.72429 52.2522 9.50763C51.892 9.29097 51.4689 9.18264 50.983 9.18264C50.4553 9.18264 49.9945 9.30937 49.6008 9.56282C49.2112 9.81218 48.9096 10.1392 48.696 10.5439C48.4866 10.9445 48.3819 11.3799 48.3819 11.85V12.9231C48.3819 13.5526 48.495 14.0882 48.7212 14.5297C48.9515 14.9712 49.272 15.3084 49.6825 15.5414C50.0929 15.7703 50.5725 15.8848 51.1213 15.8848C51.4773 15.8848 51.8019 15.8358 52.0951 15.7376C52.3883 15.6354 52.6417 15.4842 52.8553 15.2839C53.069 15.0836 53.2323 14.8363 53.3454 14.5419L55.1235 14.8546C54.9811 15.3656 54.7256 15.8133 54.357 16.1975C53.9926 16.5777 53.5339 16.8741 52.981 17.0867C52.4323 17.2951 51.8061 17.3994 51.1024 17.3994Z" fill="currentColor"/>
<path d="M57.1503 17.2093V7.7907H58.9661V9.28688H59.0666C59.2425 8.77998 59.5525 8.3814 59.9965 8.09116C60.4447 7.79683 60.9515 7.64966 61.517 7.64966C61.6343 7.64966 61.7725 7.65375 61.9316 7.66193C62.095 7.6701 62.2228 7.68032 62.3149 7.69259V9.44631C62.2395 9.42587 62.1055 9.40339 61.9128 9.37886C61.7201 9.35024 61.5274 9.33594 61.3348 9.33594C60.8908 9.33594 60.4949 9.42792 60.1473 9.61187C59.8038 9.79174 59.5316 10.0432 59.3305 10.3661C59.1294 10.685 59.0289 11.0488 59.0289 11.4576V17.2093H57.1503Z" fill="currentColor"/>
<path d="M67.4643 20.9375C66.6978 20.9375 66.0381 20.8394 65.4852 20.6432C64.9365 20.4469 64.4883 20.1874 64.1407 19.8644C63.793 19.5415 63.5333 19.1879 63.3616 18.8036L64.9763 18.1536C65.0894 18.3335 65.2402 18.5236 65.4287 18.7239C65.6214 18.9283 65.8811 19.102 66.2078 19.2451C66.5387 19.3882 66.9638 19.4597 67.4832 19.4597C68.1953 19.4597 68.7838 19.2901 69.2487 18.9508C69.7137 18.6156 69.9461 18.08 69.9461 17.3442V15.4924H69.8267C69.7137 15.6927 69.5503 15.9155 69.3367 16.1607C69.1272 16.406 68.8382 16.6186 68.4696 16.7985C68.101 16.9783 67.6214 17.0683 67.0308 17.0683C66.2685 17.0683 65.5816 16.8945 64.97 16.5471C64.3627 16.1955 63.881 15.6784 63.5249 14.9957C63.1731 14.3089 62.9972 13.4648 62.9972 12.4632C62.9972 11.4617 63.171 10.6032 63.5187 9.88781C63.8705 9.17242 64.3522 8.62464 64.9637 8.24446C65.5753 7.86019 66.2685 7.66806 67.0434 7.66806C67.6424 7.66806 68.1262 7.76617 68.4948 7.96239C68.8634 8.15452 69.1503 8.37936 69.3555 8.6369C69.565 8.89444 69.7262 9.12132 69.8393 9.31754H69.9775V7.7907H71.8184V17.4178C71.8184 18.2272 71.6258 18.8915 71.2404 19.4107C70.8551 19.9298 70.3336 20.3141 69.6759 20.5635C69.0225 20.8128 68.2853 20.9375 67.4643 20.9375ZM67.4455 15.5476C67.9858 15.5476 68.4424 15.4249 68.8152 15.1796C69.1922 14.9303 69.477 14.5746 69.6697 14.1127C69.8665 13.6467 69.965 13.0887 69.965 12.4387C69.965 11.8051 69.8686 11.247 69.6759 10.7647C69.4833 10.2823 69.2005 9.90621 68.8278 9.6364C68.455 9.36251 67.9942 9.22556 67.4455 9.22556C66.88 9.22556 66.4088 9.36864 66.0318 9.6548C65.6549 9.93686 65.37 10.3211 65.1774 10.8076C64.9889 11.2941 64.8946 11.8378 64.8946 12.4387C64.8946 13.056 64.991 13.5976 65.1836 14.0636C65.3763 14.5297 65.6611 14.8935 66.0381 15.1551C66.4193 15.4167 66.8884 15.5476 67.4455 15.5476Z" fill="currentColor"/>
<path d="M74.161 17.2093V7.7907H76.0396V17.2093H74.161ZM75.1097 6.33744C74.783 6.33744 74.5024 6.23115 74.2678 6.01858C74.0374 5.80192 73.9222 5.54438 73.9222 5.24596C73.9222 4.94345 74.0374 4.68591 74.2678 4.47334C74.5024 4.25668 74.783 4.14835 75.1097 4.14835C75.4364 4.14835 75.715 4.25668 75.9453 4.47334C76.1799 4.68591 76.2972 4.94345 76.2972 5.24596C76.2972 5.54438 76.1799 5.80192 75.9453 6.01858C75.715 6.23115 75.4364 6.33744 75.1097 6.33744Z" fill="currentColor"/>
<path d="M82.9828 7.7907V9.26235H77.5292V7.7907H82.9828ZM79.0246 17.2093V6.69922C79.0246 6.11056 79.1565 5.62205 79.4204 5.23369C79.6843 4.84125 80.034 4.54896 80.4696 4.35683C80.9053 4.16061 81.3786 4.0625 81.8896 4.0625C82.2666 4.0625 82.5891 4.09316 82.8572 4.15448C83.1252 4.21171 83.3242 4.26485 83.454 4.31391L83.0142 5.79783C82.9263 5.7733 82.8132 5.74469 82.6749 5.71198C82.5367 5.67519 82.3692 5.6568 82.1723 5.6568C81.7158 5.6568 81.3891 5.76717 81.1922 5.98792C80.9995 6.20867 80.9032 6.52753 80.9032 6.94449V17.2093H79.0246Z" fill="currentColor"/>
<path d="M85.9317 20.7413C85.651 20.7413 85.3955 20.7188 85.1651 20.6738C84.9348 20.6329 84.763 20.588 84.6499 20.5389L85.1023 19.0366C85.4458 19.1265 85.7516 19.1654 86.0196 19.1531C86.2877 19.1409 86.5244 19.0427 86.7296 18.8588C86.939 18.6748 87.1233 18.3744 87.2825 17.9574L87.515 17.3319L83.984 7.7907H85.9945L88.4386 15.0999H88.5391L90.9832 7.7907H93L89.0229 18.4663C88.8386 18.9569 88.604 19.3718 88.3192 19.7111C88.0344 20.0545 87.6951 20.312 87.3014 20.4837C86.9076 20.6554 86.4511 20.7413 85.9317 20.7413Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25ZM6.33336 10.8363C5.62696 10.5675 5.12502 9.88399 5.12502 9.08325C5.12502 8.04772 5.96449 7.20825 7.00002 7.20825C7.937 7.20825 8.71346 7.89553 8.85276 8.79347C8.95713 8.71964 9.06732 8.65233 9.18336 8.59155C9.65003 8.33599 10.1778 8.20821 10.7667 8.20821C11.3223 8.20821 11.8278 8.33599 12.2834 8.59155C12.6651 8.7964 12.9806 9.07538 13.2297 9.42849C13.499 9.08483 13.828 8.8114 14.2167 8.60821C14.7056 8.34154 15.25 8.20821 15.85 8.20821C16.45 8.20821 16.9889 8.33599 17.4667 8.59155C17.9445 8.83599 18.3223 9.19154 18.6 9.65821C18.8778 10.1249 19.0167 10.6804 19.0167 11.3249V14.3979C19.4863 14.7387 19.7917 15.292 19.7917 15.9165C19.7917 16.9521 18.9523 17.7915 17.9167 17.7915C16.8812 17.7915 16.0417 16.9521 16.0417 15.9165C16.0417 15.2846 16.3543 14.7257 16.8334 14.386V11.6749C16.8334 11.2082 16.6834 10.8471 16.3834 10.5915C16.0945 10.3249 15.7334 10.1915 15.3 10.1915C15.0223 10.1915 14.7611 10.2527 14.5167 10.3749C14.2834 10.486 14.1 10.6527 13.9667 10.8749C13.8334 11.0971 13.7667 11.3638 13.7667 11.6749V14.398C14.2363 14.7387 14.5417 15.292 14.5417 15.9165C14.5417 16.9521 13.7022 17.7915 12.6667 17.7915C11.6311 17.7915 10.7917 16.9521 10.7917 15.9165C10.7917 15.2846 11.1043 14.7257 11.5834 14.386V11.6749C11.5834 11.2082 11.4334 10.8471 11.1334 10.5915C10.8445 10.3249 10.4834 10.1915 10.05 10.1915C9.76114 10.1915 9.50003 10.2527 9.2667 10.3749C9.03337 10.486 8.85003 10.6527 8.7167 10.8749C8.58336 11.0971 8.5167 11.3638 8.5167 11.6749V14.398C8.9863 14.7387 9.29169 15.292 9.29169 15.9165C9.29169 16.9521 8.45222 17.7915 7.41669 17.7915C6.38115 17.7915 5.54169 16.9521 5.54169 15.9165C5.54169 15.2846 5.85432 14.7257 6.33336 14.386V10.8363Z" fill="currentColor"/>
<path d="M7.04167 10.1249C7.61696 10.1249 8.08333 9.65855 8.08333 9.08325C8.08333 8.50796 7.61696 8.04158 7.04167 8.04158C6.46637 8.04158 6 8.50796 6 9.08325C6 9.65855 6.46637 10.1249 7.04167 10.1249Z" fill="currentColor"/>
<path d="M7.45833 16.9582C8.03363 16.9582 8.5 16.4918 8.5 15.9165C8.5 15.3412 8.03363 14.8749 7.45833 14.8749C6.88304 14.8749 6.41667 15.3412 6.41667 15.9165C6.41667 16.4918 6.88304 16.9582 7.45833 16.9582Z" fill="currentColor"/>
<path d="M17.9584 16.9582C18.5337 16.9582 19 16.4918 19 15.9165C19 15.3412 18.5337 14.8749 17.9584 14.8749C17.3831 14.8749 16.9167 15.3412 16.9167 15.9165C16.9167 16.4918 17.3831 16.9582 17.9584 16.9582Z" fill="currentColor"/>
<path d="M13.75 15.9165C13.75 16.4918 13.2836 16.9582 12.7083 16.9582C12.133 16.9582 11.6667 16.4918 11.6667 15.9165C11.6667 15.3412 12.133 14.8749 12.7083 14.8749C13.2836 14.8749 13.75 15.3412 13.75 15.9165Z" fill="currentColor"/>
</svg>
</span></a><!-- Desktop Nav --><div class="hidden lg:flex items-center gap-1" data-astro-cid-nen7h5rs><!-- Products Dropdown --><div class="nav-dropdown relative" data-open="false" data-astro-cid-m6lq5bkx><button type="button" class="nav-dropdown__trigger px-3 py-2 text-base font-medium text-dark hover:text-gray-700 rounded-lg hover:bg-gray-200 transition-colors flex items-center gap-1" aria-haspopup="true" aria-expanded="false" aria-controls="nav-dropdown-products" data-astro-cid-m6lq5bkx>Products<!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="nav-dropdown__caret w-3.5 h-3.5"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</button><div id="nav-dropdown-products" class="nav-dropdown__panel absolute top-full left-1/2 -translate-x-1/2 pt-2" data-astro-cid-m6lq5bkx><div class="bg-gray-200 rounded-xl shadow-lg border border-gray-300 overflow-hidden w-[280px]" data-astro-cid-m6lq5bkx><a href="/product/merge-queue" class="flex items-center gap-3 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-12 h-12 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-teal-700" data-astro-cid-nen7h5rs><svg class="w-7 h-7" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28 10C31.3137 10 34 12.6863 34 16V32C34 35.3137 31.3137 38 28 38H12C8.68629 38 6 35.3137 6 32V16C6 12.6863 8.68629 10 12 10H28ZM12 12C9.79086 12 8 13.7909 8 16V32L8.00488 32.2061C8.11211 34.3194 9.85996 36 12 36H28L28.2061 35.9951C30.2512 35.8913 31.8913 34.2512 31.9951 32.2061L32 32V16C32 13.86 30.3194 12.1121 28.2061 12.0049L28 12H12ZM15 15.5C16.933 15.5 18.5 17.067 18.5 19C18.5 20.565 17.4726 21.8891 16.0557 22.3369C16.2393 23.7521 16.8833 25.0767 17.9033 26.0967C18.923 27.1164 20.2473 27.7595 21.6621 27.9434C22.1101 26.5268 23.4352 25.5 25 25.5C26.933 25.5 28.5 27.067 28.5 29C28.5 30.933 26.933 32.5 25 32.5C23.3979 32.5 22.0483 31.4232 21.6328 29.9541C19.6971 29.7557 17.8776 28.899 16.4893 27.5107C16.3172 27.3387 16.1555 27.1583 16 26.9736V31.5C16 32.0523 15.5523 32.5 15 32.5C14.4477 32.5 14 32.0523 14 31.5V22.3535C12.5545 21.9231 11.5 20.5854 11.5 19C11.5 17.067 13.067 15.5 15 15.5ZM25 27.5C24.1716 27.5 23.5 28.1716 23.5 29C23.5 29.8284 24.1716 30.5 25 30.5C25.8284 30.5 26.5 29.8284 26.5 29C26.5 28.1716 25.8284 27.5 25 27.5ZM15 17.5C14.1716 17.5 13.5 18.1716 13.5 19C13.5 19.8284 14.1716 20.5 15 20.5C15.8284 20.5 16.5 19.8284 16.5 19C16.5 18.1716 15.8284 17.5 15 17.5ZM29 6C29.5523 6 30 6.44772 30 7C30 7.55228 29.5523 8 29 8H11C10.4477 8 10 7.55228 10 7C10 6.44772 10.4477 6 11 6H29ZM27 2C27.5523 2 28 2.44772 28 3C28 3.55228 27.5523 4 27 4H13C12.4477 4 12 3.55228 12 3C12 2.44772 12.4477 2 13 2H27Z" fill="currentColor"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Merge Queue</div><div class="text-xs font-semibold text-gray-600 mt-0.5" data-astro-cid-nen7h5rs>Keep main green. Always.</div></div></a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/product/ci-insights" class="flex items-center gap-3 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-12 h-12 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-purple-700" data-astro-cid-nen7h5rs><svg class="w-7 h-7" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.6667 5H8.33333C6.49238 5 5 6.49238 5 8.33333V31.6667C5 33.5076 6.49238 35 8.33333 35H31.6667C33.5076 35 35 33.5076 35 31.6667V8.33333C35 6.49238 33.5076 5 31.6667 5Z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.3334 19.9998H25.0001L21.6667 28.3332L18.3334 11.6665L15.0001 19.9998H11.6667" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>CI Insights</div><div class="text-xs font-semibold text-gray-600 mt-0.5" data-astro-cid-nen7h5rs>CI observability and auto-retry</div></div></a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/product/test-insights" class="flex items-center gap-3 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-12 h-12 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-orange-700" data-astro-cid-nen7h5rs><svg class="w-7 h-7" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 25C22.7614 25 25 22.7614 25 20C25 17.2386 22.7614 15 20 15C17.2386 15 15 17.2386 15 20C15 22.7614 17.2386 25 20 25Z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 11.6667V8.33333C5 7.44928 5.35119 6.60143 5.97631 5.97631C6.60143 5.35119 7.44928 5 8.33333 5H11.6667" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.3333 5H31.6666C32.5506 5 33.3985 5.35119 34.0236 5.97631C34.6487 6.60143 34.9999 7.44928 34.9999 8.33333V11.6667" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.9999 28.3335V31.6668C34.9999 32.5509 34.6487 33.3987 34.0236 34.0239C33.3985 34.649 32.5506 35.0002 31.6666 35.0002H28.3333" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.6667 35.0002H8.33333C7.44928 35.0002 6.60143 34.649 5.97631 34.0239C5.35119 33.3987 5 32.5509 5 31.6668V28.3335" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Test Insights</div><div class="text-xs font-semibold text-gray-600 mt-0.5" data-astro-cid-nen7h5rs>Detect, quarantine, and fix flaky tests</div></div></a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/product/merge-protections" class="flex items-center gap-3 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-12 h-12 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-blue-700" data-astro-cid-nen7h5rs><svg class="w-7 h-7" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.9998 19.1668L18.3332 22.5001L25.8332 15.0001M33.3332 20.0001C33.3332 28.1808 24.4099 34.1308 21.1632 36.0249C20.7942 36.2402 20.6097 36.3478 20.3493 36.4036C20.1472 36.447 19.8524 36.447 19.6504 36.4036C19.39 36.3478 19.2055 36.2402 18.8365 36.0249C15.5898 34.1308 6.6665 28.1808 6.6665 20.0001V12.0294C6.6665 10.6969 6.6665 10.0307 6.88444 9.45795C7.07696 8.95201 7.38981 8.50057 7.79593 8.14266C8.25566 7.73751 8.8795 7.50357 10.1272 7.03569L19.0635 3.68457C19.41 3.55463 19.5832 3.48966 19.7615 3.46391C19.9196 3.44107 20.0801 3.44107 20.2382 3.46391C20.4164 3.48966 20.5897 3.55463 20.9362 3.68457L29.8725 7.03569C31.1202 7.50357 31.744 7.73751 32.2037 8.14266C32.6099 8.50057 32.9227 8.95201 33.1152 9.45795C33.3332 10.0307 33.3332 10.6969 33.3332 12.0294V20.0001Z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Merge Protections</div><div class="text-xs font-semibold text-gray-600 mt-0.5" data-astro-cid-nen7h5rs>Governance and scheduling</div></div></a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/product/stacks" class="flex items-center gap-3 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-12 h-12 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-coral-700" data-astro-cid-nen7h5rs><svg class="w-7 h-7" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.5001 16.0003C18.5001 14.5276 17.3062 13.3337 15.8334 13.3337C14.3607 13.3337 13.1667 14.5276 13.1667 16.0003C13.1667 17.4731 14.3607 18.667 15.8334 18.667C17.3062 18.667 18.5001 17.4731 18.5001 16.0003Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.16659 10.6663C9.16659 9.19358 7.97268 7.99967 6.49992 7.99967C5.02716 7.99967 3.83325 9.19358 3.83325 10.6663C3.83325 12.1391 5.02716 13.333 6.49992 13.333C7.97268 13.333 9.16658 12.1391 9.16659 10.6663Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.1666 10.6663C28.1666 9.19358 26.9727 7.99967 25.4999 7.99967C24.0272 7.99967 22.8333 9.19358 22.8333 10.6663C22.8333 12.1391 24.0272 13.333 25.4999 13.333C26.9727 13.333 28.1666 12.1391 28.1666 10.6663Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.5001 5.33333C18.5001 3.86057 17.3062 2.66667 15.8334 2.66667C14.3607 2.66667 13.1667 3.86057 13.1667 5.33333C13.1667 6.80609 14.3607 8 15.8334 8C17.3062 8 18.5001 6.80609 18.5001 5.33333Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.5001 26.6663C18.5001 25.1936 17.3062 23.9997 15.8334 23.9997C14.3607 23.9997 13.1667 25.1936 13.1667 26.6663C13.1667 28.1391 14.3607 29.333 15.8334 29.333C17.3062 29.333 18.5001 28.1391 18.5001 26.6663Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.16659 21.3333C9.16659 19.8606 7.97268 18.6667 6.49992 18.6667C5.02716 18.6667 3.83325 19.8606 3.83325 21.3333C3.83325 22.8061 5.02716 24 6.49992 24C7.97268 24 9.16658 22.8061 9.16659 21.3333Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.1666 21.3333C28.1666 19.8606 26.9727 18.6667 25.4999 18.6667C24.0272 18.6667 22.8333 19.8606 22.8333 21.3333C22.8333 22.8061 24.0272 24 25.4999 24C26.9727 24 28.1666 22.8061 28.1666 21.3333Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Stacks</div><div class="text-xs font-semibold text-gray-600 mt-0.5" data-astro-cid-nen7h5rs>Split big PRs into reviewable chains</div></div></a></div></div></div><script type="module">var e=new WeakSet,t=!1,n=window.matchMedia(`(hover: hover) and (pointer: fine)`).matches;function r(e,t){e.dataset.open=String(t),e.querySelector(`.nav-dropdown__trigger`)?.setAttribute(`aria-expanded`,String(t))}function i(){return Array.from(document.querySelectorAll(`.nav-dropdown`))}function a(e){for(let t of i())t!==e&&r(t,!1)}function o(){let o=i();for(let t of o){if(e.has(t))continue;e.add(t);let i=t.querySelector(`.nav-dropdown__trigger`);if(i){if(i.addEventListener(`click`,e=>{e.stopPropagation();let n=t.dataset.open===`true`;a(t),r(t,!n)}),n){let e;t.addEventListener(`mouseenter`,()=>{e!==void 0&&(window.clearTimeout(e),e=void 0),a(t),r(t,!0)}),t.addEventListener(`mouseleave`,()=>{e=window.setTimeout(()=>{r(t,!1),e=void 0},150)})}for(let e of t.querySelectorAll(`a`))e.addEventListener(`click`,()=>r(t,!1))}}t||(t=!0,document.addEventListener(`click`,e=>{let t=e.target;t&&(i().some(e=>e.contains(t))||a())}),document.addEventListener(`keydown`,e=>{if(e.key!==`Escape`)return;let t=i().find(e=>e.dataset.open===`true`);t&&(r(t,!1),t.querySelector(`.nav-dropdown__trigger`)?.focus())}))}o(),document.addEventListener(`astro:page-load`,o);</script><!-- Pricing --><a href="/pricing" class="px-3 py-2 text-base font-medium text-dark hover:text-gray-700 rounded-lg hover:bg-gray-200 transition-colors" data-astro-cid-nen7h5rs>Pricing</a><!-- Resources Dropdown --><div class="nav-dropdown relative" data-open="false" data-astro-cid-m6lq5bkx><button type="button" class="nav-dropdown__trigger px-3 py-2 text-base font-medium text-dark hover:text-gray-700 rounded-lg hover:bg-gray-200 transition-colors flex items-center gap-1" aria-haspopup="true" aria-expanded="false" aria-controls="nav-dropdown-resources" data-astro-cid-m6lq5bkx>Resources<!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="nav-dropdown__caret w-3.5 h-3.5"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</button><div id="nav-dropdown-resources" class="nav-dropdown__panel absolute top-full left-1/2 -translate-x-1/2 pt-2" data-astro-cid-m6lq5bkx><div class="bg-gray-200 rounded-xl shadow-lg border border-gray-300 overflow-hidden w-56" data-astro-cid-m6lq5bkx><a href="/learn" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-graduation-cap"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z" />
  <path d="M22 10v6" />
  <path d="M6 12.5V16a6 3 0 0 0 12 0v-3.5" />
</svg>
Learn</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/customers" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-quote"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" />
  <path d="M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" />
</svg>
Customer Stories</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/blog" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-newspaper"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M15 18h-5" />
  <path d="M18 14h-8" />
  <path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2" />
  <rect width="8" height="4" x="10" y="6" rx="1" />
</svg>
Blog</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="https://docs.mergify.com/changelog" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-megaphone"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" />
  <path d="M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" />
  <path d="M8 6v8" />
</svg>
Changelog</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/compare-mergify" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-scale"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M12 3v18" />
  <path d="m19 8 3 8a5 5 0 0 1-6 0zV7" />
  <path d="M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1" />
  <path d="m5 8 3 8a5 5 0 0 1-6 0zV7" />
  <path d="M7 21h10" />
</svg>
Compare</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/calculator" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark plausible-event-name=Calculator+Click plausible-event-source=nav-desktop" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-calculator"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <rect width="16" height="20" x="4" y="2" rx="2" />
  <line x1="8" x2="16" y1="6" y2="6" />
  <line x1="16" x2="16" y1="14" y2="18" />
  <path d="M16 10h.01" />
  <path d="M12 10h.01" />
  <path d="M8 10h.01" />
  <path d="M12 14h.01" />
  <path d="M8 14h.01" />
  <path d="M12 18h.01" />
  <path d="M8 18h.01" />
</svg>
ROI Calculator</a></div></div></div><!-- Developers Dropdown --><div class="nav-dropdown relative" data-open="false" data-astro-cid-m6lq5bkx><button type="button" class="nav-dropdown__trigger px-3 py-2 text-base font-medium text-dark hover:text-gray-700 rounded-lg hover:bg-gray-200 transition-colors flex items-center gap-1" aria-haspopup="true" aria-expanded="false" aria-controls="nav-dropdown-developers" data-astro-cid-m6lq5bkx>Developers<!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="nav-dropdown__caret w-3.5 h-3.5"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</button><div id="nav-dropdown-developers" class="nav-dropdown__panel absolute top-full left-1/2 -translate-x-1/2 pt-2" data-astro-cid-m6lq5bkx><div class="bg-gray-200 rounded-xl shadow-lg border border-gray-300 overflow-hidden w-56" data-astro-cid-m6lq5bkx><a href="https://docs.mergify.com/" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-book-open"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M12 5v16" />
  <path d="M20.001 19A2 2 0 0022 17V5a2 2 0 00-1.999-2L16 3.002A5 5 0 0012 5a5 5 0 00-4-2H4a2 2 0 00-2 2v12a2 2 0 001.999 2H8a5 5 0 014 2 5 5 0 014-2z" />
</svg>
Documentation</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="https://slack.mergify.com/" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><svg aria-hidden="true" class="w-6 h-6 text-gray-700" role="img" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"/></svg>
Slack Community</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/integrations" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-puzzle"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" />
</svg>
Integrations</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="https://status.mergify.com/" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-heart-pulse"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5" />
  <path d="M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27" />
</svg>
Service Status</a></div></div></div><!-- Company Dropdown --><div class="nav-dropdown relative" data-open="false" data-astro-cid-m6lq5bkx><button type="button" class="nav-dropdown__trigger px-3 py-2 text-base font-medium text-dark hover:text-gray-700 rounded-lg hover:bg-gray-200 transition-colors flex items-center gap-1" aria-haspopup="true" aria-expanded="false" aria-controls="nav-dropdown-company" data-astro-cid-m6lq5bkx>Company<!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="nav-dropdown__caret w-3.5 h-3.5"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</button><div id="nav-dropdown-company" class="nav-dropdown__panel absolute top-full left-1/2 -translate-x-1/2 pt-2" data-astro-cid-m6lq5bkx><div class="bg-gray-200 rounded-xl shadow-lg border border-gray-300 overflow-hidden w-44" data-astro-cid-m6lq5bkx><a href="/about" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-building-2"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M10 12h4" />
  <path d="M10 8h4" />
  <path d="M14 21v-3a2 2 0 0 0-4 0v3" />
  <path d="M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2" />
  <path d="M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16" />
</svg>
About</a><hr class="border-gray-300" data-astro-cid-nen7h5rs><a href="/careers" class="flex items-center gap-2.5 px-4 py-4 hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors text-sm font-medium text-dark" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-briefcase"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
  <rect width="20" height="14" x="2" y="6" rx="2" />
</svg>
Careers</a></div></div></div></div><!-- Right side buttons --><div class="hidden lg:flex items-center gap-2" data-astro-cid-nen7h5rs><a href="https://docs.mergify.com/" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center justify-center transition-colors rounded-xl bg-white hover:bg-white/80 text-dark font-semibold shadow-[0_10px_10px_-8px_rgba(0,0,0,0.06)] text-sm px-4 py-3">Docs</a><a href="https://dashboard.mergify.com/" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center justify-center transition-colors rounded-xl bg-dark hover:bg-gray-800 text-white font-semibold text-sm px-4 py-3">Sign in <!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="inline-block w-3.5 h-3.5 ml-1 transition-transform duration-500 group-hover:translate-x-0.5"
  class="lucide lucide-arrow-right"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M5 12h14" />
  <path d="m12 5 7 7-7 7" />
</svg>
</a></div><!-- Mobile Menu Button --><button id="mobile-menu-btn" class="lg:hidden p-2 text-dark hover:text-gray-700" aria-label="Toggle menu" aria-expanded="false" data-astro-cid-nen7h5rs><span id="menu-icon-open" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-7 h-7"
  class="lucide lucide-list"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M3 5h.01" />
  <path d="M3 12h.01" />
  <path d="M3 19h.01" />
  <path d="M8 5h13" />
  <path d="M8 12h13" />
  <path d="M8 19h13" />
</svg>
</span><span id="menu-icon-close" class="hidden" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-7 h-7"
  class="lucide lucide-x"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M18 6 6 18" />
  <path d="m6 6 12 12" />
</svg>
</span></button></nav></header><!-- Brand context menu, opened by right-clicking the logo. Lives outside the
     nav because the nav's backdrop-blur would turn it into the containing
     block for this fixed-position element. --><div id="logo-context-menu" class="logo-context-menu fixed top-0 left-0 z-50 w-56 rounded-xl border border-white/10 bg-dark p-1.5 shadow-lg outline-none" role="menu" aria-label="Mergify brand assets" tabindex="-1" data-open="false" data-astro-cid-6carq7tq><button type="button" role="menuitem" class="group flex w-full items-center gap-2.5 rounded-lg px-2.5 py-2 text-left text-sm font-medium text-white/90 hover:bg-white/10 hover:text-white focus-visible:bg-white/10 focus-visible:text-white focus-visible:outline-none transition-colors" data-copy-svg="<svg width=&quot;25&quot; height=&quot;25&quot; viewBox=&quot;0 0 25 25&quot; fill=&quot;none&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot;>
<g clip-path=&quot;url(#clip0_1083_50505)&quot;>
<path fill-rule=&quot;evenodd&quot; clip-rule=&quot;evenodd&quot; d=&quot;M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25ZM6.33336 10.8363C5.62696 10.5675 5.12502 9.88399 5.12502 9.08325C5.12502 8.04772 5.96449 7.20825 7.00002 7.20825C7.937 7.20825 8.71346 7.89553 8.85276 8.79347C8.95713 8.71964 9.06732 8.65233 9.18336 8.59155C9.65003 8.33599 10.1778 8.20821 10.7667 8.20821C11.3223 8.20821 11.8278 8.33599 12.2834 8.59155C12.6651 8.7964 12.9806 9.07538 13.2297 9.42849C13.499 9.08483 13.828 8.8114 14.2167 8.60821C14.7056 8.34154 15.25 8.20821 15.85 8.20821C16.45 8.20821 16.9889 8.33599 17.4667 8.59155C17.9445 8.83599 18.3223 9.19154 18.6 9.65821C18.8778 10.1249 19.0167 10.6804 19.0167 11.3249V14.3979C19.4863 14.7387 19.7917 15.292 19.7917 15.9165C19.7917 16.9521 18.9523 17.7915 17.9167 17.7915C16.8812 17.7915 16.0417 16.9521 16.0417 15.9165C16.0417 15.2846 16.3543 14.7257 16.8334 14.386V11.6749C16.8334 11.2082 16.6834 10.8471 16.3834 10.5915C16.0945 10.3249 15.7334 10.1915 15.3 10.1915C15.0223 10.1915 14.7611 10.2527 14.5167 10.3749C14.2834 10.486 14.1 10.6527 13.9667 10.8749C13.8334 11.0971 13.7667 11.3638 13.7667 11.6749V14.398C14.2363 14.7387 14.5417 15.292 14.5417 15.9165C14.5417 16.9521 13.7022 17.7915 12.6667 17.7915C11.6311 17.7915 10.7917 16.9521 10.7917 15.9165C10.7917 15.2846 11.1043 14.7257 11.5834 14.386V11.6749C11.5834 11.2082 11.4334 10.8471 11.1334 10.5915C10.8445 10.3249 10.4834 10.1915 10.05 10.1915C9.76114 10.1915 9.50003 10.2527 9.2667 10.3749C9.03337 10.486 8.85003 10.6527 8.7167 10.8749C8.58336 11.0971 8.5167 11.3638 8.5167 11.6749V14.398C8.9863 14.7387 9.29169 15.292 9.29169 15.9165C9.29169 16.9521 8.45222 17.7915 7.41669 17.7915C6.38115 17.7915 5.54169 16.9521 5.54169 15.9165C5.54169 15.2846 5.85432 14.7257 6.33336 14.386V10.8363Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M7.04167 10.1249C7.61696 10.1249 8.08333 9.65855 8.08333 9.08325C8.08333 8.50796 7.61696 8.04158 7.04167 8.04158C6.46637 8.04158 6 8.50796 6 9.08325C6 9.65855 6.46637 10.1249 7.04167 10.1249Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M7.45833 16.9582C8.03363 16.9582 8.5 16.4918 8.5 15.9165C8.5 15.3412 8.03363 14.8749 7.45833 14.8749C6.88304 14.8749 6.41667 15.3412 6.41667 15.9165C6.41667 16.4918 6.88304 16.9582 7.45833 16.9582Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M17.9584 16.9582C18.5337 16.9582 19 16.4918 19 15.9165C19 15.3412 18.5337 14.8749 17.9584 14.8749C17.3831 14.8749 16.9167 15.3412 16.9167 15.9165C16.9167 16.4918 17.3831 16.9582 17.9584 16.9582Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M13.75 15.9165C13.75 16.4918 13.2836 16.9582 12.7083 16.9582C12.133 16.9582 11.6667 16.4918 11.6667 15.9165C11.6667 15.3412 12.133 14.8749 12.7083 14.8749C13.2836 14.8749 13.75 15.3412 13.75 15.9165Z&quot; fill=&quot;black&quot;/>
</g>
<defs>
<clipPath id=&quot;clip0_1083_50505&quot;>
<path d=&quot;M0 12.5C0 8.30236 0 6.20354 0.768086 4.57956C1.55942 2.90642 2.90642 1.55942 4.57956 0.768086C6.20354 0 8.30236 0 12.5 0C16.6976 0 18.7965 0 20.4204 0.768086C22.0936 1.55942 23.4406 2.90642 24.2319 4.57956C25 6.20354 25 8.30236 25 12.5C25 16.6976 25 18.7965 24.2319 20.4204C23.4406 22.0936 22.0936 23.4406 20.4204 24.2319C18.7965 25 16.6976 25 12.5 25C8.30236 25 6.20354 25 4.57956 24.2319C2.90642 23.4406 1.55942 22.0936 0.768086 20.4204C0 18.7965 0 16.6976 0 12.5Z&quot; fill=&quot;white&quot;/>
</clipPath>
</defs>
</svg>" data-astro-cid-6carq7tq><svg aria-hidden="true" class="w-4 h-4 shrink-0 text-white/60 group-hover:text-white group-focus-visible:text-white transition-colors" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1083_50505)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25ZM6.33336 10.8363C5.62696 10.5675 5.12502 9.88399 5.12502 9.08325C5.12502 8.04772 5.96449 7.20825 7.00002 7.20825C7.937 7.20825 8.71346 7.89553 8.85276 8.79347C8.95713 8.71964 9.06732 8.65233 9.18336 8.59155C9.65003 8.33599 10.1778 8.20821 10.7667 8.20821C11.3223 8.20821 11.8278 8.33599 12.2834 8.59155C12.6651 8.7964 12.9806 9.07538 13.2297 9.42849C13.499 9.08483 13.828 8.8114 14.2167 8.60821C14.7056 8.34154 15.25 8.20821 15.85 8.20821C16.45 8.20821 16.9889 8.33599 17.4667 8.59155C17.9445 8.83599 18.3223 9.19154 18.6 9.65821C18.8778 10.1249 19.0167 10.6804 19.0167 11.3249V14.3979C19.4863 14.7387 19.7917 15.292 19.7917 15.9165C19.7917 16.9521 18.9523 17.7915 17.9167 17.7915C16.8812 17.7915 16.0417 16.9521 16.0417 15.9165C16.0417 15.2846 16.3543 14.7257 16.8334 14.386V11.6749C16.8334 11.2082 16.6834 10.8471 16.3834 10.5915C16.0945 10.3249 15.7334 10.1915 15.3 10.1915C15.0223 10.1915 14.7611 10.2527 14.5167 10.3749C14.2834 10.486 14.1 10.6527 13.9667 10.8749C13.8334 11.0971 13.7667 11.3638 13.7667 11.6749V14.398C14.2363 14.7387 14.5417 15.292 14.5417 15.9165C14.5417 16.9521 13.7022 17.7915 12.6667 17.7915C11.6311 17.7915 10.7917 16.9521 10.7917 15.9165C10.7917 15.2846 11.1043 14.7257 11.5834 14.386V11.6749C11.5834 11.2082 11.4334 10.8471 11.1334 10.5915C10.8445 10.3249 10.4834 10.1915 10.05 10.1915C9.76114 10.1915 9.50003 10.2527 9.2667 10.3749C9.03337 10.486 8.85003 10.6527 8.7167 10.8749C8.58336 11.0971 8.5167 11.3638 8.5167 11.6749V14.398C8.9863 14.7387 9.29169 15.292 9.29169 15.9165C9.29169 16.9521 8.45222 17.7915 7.41669 17.7915C6.38115 17.7915 5.54169 16.9521 5.54169 15.9165C5.54169 15.2846 5.85432 14.7257 6.33336 14.386V10.8363Z" fill="currentColor"/>
<path d="M7.04167 10.1249C7.61696 10.1249 8.08333 9.65855 8.08333 9.08325C8.08333 8.50796 7.61696 8.04158 7.04167 8.04158C6.46637 8.04158 6 8.50796 6 9.08325C6 9.65855 6.46637 10.1249 7.04167 10.1249Z" fill="currentColor"/>
<path d="M7.45833 16.9582C8.03363 16.9582 8.5 16.4918 8.5 15.9165C8.5 15.3412 8.03363 14.8749 7.45833 14.8749C6.88304 14.8749 6.41667 15.3412 6.41667 15.9165C6.41667 16.4918 6.88304 16.9582 7.45833 16.9582Z" fill="currentColor"/>
<path d="M17.9584 16.9582C18.5337 16.9582 19 16.4918 19 15.9165C19 15.3412 18.5337 14.8749 17.9584 14.8749C17.3831 14.8749 16.9167 15.3412 16.9167 15.9165C16.9167 16.4918 17.3831 16.9582 17.9584 16.9582Z" fill="currentColor"/>
<path d="M13.75 15.9165C13.75 16.4918 13.2836 16.9582 12.7083 16.9582C12.133 16.9582 11.6667 16.4918 11.6667 15.9165C11.6667 15.3412 12.133 14.8749 12.7083 14.8749C13.2836 14.8749 13.75 15.3412 13.75 15.9165Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_1083_50505">
<path d="M0 12.5C0 8.30236 0 6.20354 0.768086 4.57956C1.55942 2.90642 2.90642 1.55942 4.57956 0.768086C6.20354 0 8.30236 0 12.5 0C16.6976 0 18.7965 0 20.4204 0.768086C22.0936 1.55942 23.4406 2.90642 24.2319 4.57956C25 6.20354 25 8.30236 25 12.5C25 16.6976 25 18.7965 24.2319 20.4204C23.4406 22.0936 22.0936 23.4406 20.4204 24.2319C18.7965 25 16.6976 25 12.5 25C8.30236 25 6.20354 25 4.57956 24.2319C2.90642 23.4406 1.55942 22.0936 0.768086 20.4204C0 18.7965 0 16.6976 0 12.5Z" fill="white"/>
</clipPath>
</defs>
</svg>
<span class="logo-context-menu__label" data-astro-cid-6carq7tq>Copy Logo as SVG</span></button><button type="button" role="menuitem" class="group flex w-full items-center gap-2.5 rounded-lg px-2.5 py-2 text-left text-sm font-medium text-white/90 hover:bg-white/10 hover:text-white focus-visible:bg-white/10 focus-visible:text-white focus-visible:outline-none transition-colors" data-copy-svg="<svg width=&quot;93&quot; height=&quot;25&quot; viewBox=&quot;0 0 93 25&quot; fill=&quot;none&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot;>
<path d=&quot;M31.4833 17.2093V7.7907H33.2865V9.32367H33.4059C33.6069 8.80451 33.9357 8.3998 34.3923 8.10956C34.8489 7.81523 35.3955 7.66806 36.0322 7.66806C36.6772 7.66806 37.2175 7.81523 37.6532 8.10956C38.093 8.40389 38.4176 8.80859 38.627 9.32367H38.7275C38.9579 8.82086 39.3244 8.42024 39.8271 8.12182C40.3297 7.81931 40.9287 7.66806 41.624 7.66806C42.4994 7.66806 43.2136 7.93582 43.7665 8.47134C44.3236 9.00686 44.6021 9.81423 44.6021 10.8934V17.2093H42.7235V11.0651C42.7235 10.4274 42.5455 9.96548 42.1895 9.67932C41.8334 9.39317 41.4083 9.25009 40.914 9.25009C40.3025 9.25009 39.8271 9.43405 39.4878 9.80196C39.1485 10.1658 38.9789 10.6339 38.9789 11.2062V17.2093H37.1065V10.9486C37.1065 10.4376 36.9432 10.0268 36.6165 9.71611C36.2898 9.40543 35.8646 9.25009 35.341 9.25009C34.985 9.25009 34.6562 9.34207 34.3546 9.52603C34.0572 9.70589 33.8164 9.9573 33.6321 10.2803C33.452 10.6032 33.3619 10.9772 33.3619 11.4024V17.2093H31.4833Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M51.1024 17.3994C50.1516 17.3994 49.3327 17.2011 48.6458 16.8046C47.963 16.404 47.4352 15.8419 47.0625 15.1183C46.6939 14.3907 46.5096 13.5383 46.5096 12.5613C46.5096 11.5966 46.6939 10.7463 47.0625 10.0104C47.4352 9.27462 47.9546 8.70026 48.6206 8.28738C49.2908 7.8745 50.0741 7.66806 50.9705 7.66806C51.515 7.66806 52.0428 7.75595 52.5538 7.93173C53.0648 8.10751 53.5234 8.38345 53.9297 8.75954C54.336 9.13563 54.6565 9.62414 54.891 10.2251C55.1256 10.8219 55.2429 11.5475 55.2429 12.4019V13.0519H47.5714V11.6783H53.402C53.402 11.1959 53.3014 10.7688 53.1004 10.3968C52.8993 10.0207 52.6166 9.72429 52.2522 9.50763C51.892 9.29097 51.4689 9.18264 50.983 9.18264C50.4553 9.18264 49.9945 9.30937 49.6008 9.56282C49.2112 9.81218 48.9096 10.1392 48.696 10.5439C48.4866 10.9445 48.3819 11.3799 48.3819 11.85V12.9231C48.3819 13.5526 48.495 14.0882 48.7212 14.5297C48.9515 14.9712 49.272 15.3084 49.6825 15.5414C50.0929 15.7703 50.5725 15.8848 51.1213 15.8848C51.4773 15.8848 51.8019 15.8358 52.0951 15.7376C52.3883 15.6354 52.6417 15.4842 52.8553 15.2839C53.069 15.0836 53.2323 14.8363 53.3454 14.5419L55.1235 14.8546C54.9811 15.3656 54.7256 15.8133 54.357 16.1975C53.9926 16.5777 53.5339 16.8741 52.981 17.0867C52.4323 17.2951 51.8061 17.3994 51.1024 17.3994Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M57.1503 17.2093V7.7907H58.9661V9.28688H59.0666C59.2425 8.77998 59.5525 8.3814 59.9965 8.09116C60.4447 7.79683 60.9515 7.64966 61.517 7.64966C61.6343 7.64966 61.7725 7.65375 61.9316 7.66193C62.095 7.6701 62.2228 7.68032 62.3149 7.69259V9.44631C62.2395 9.42587 62.1055 9.40339 61.9128 9.37886C61.7201 9.35024 61.5274 9.33594 61.3348 9.33594C60.8908 9.33594 60.4949 9.42792 60.1473 9.61187C59.8038 9.79174 59.5316 10.0432 59.3305 10.3661C59.1294 10.685 59.0289 11.0488 59.0289 11.4576V17.2093H57.1503Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M67.4643 20.9375C66.6978 20.9375 66.0381 20.8394 65.4852 20.6432C64.9365 20.4469 64.4883 20.1874 64.1407 19.8644C63.793 19.5415 63.5333 19.1879 63.3616 18.8036L64.9763 18.1536C65.0894 18.3335 65.2402 18.5236 65.4287 18.7239C65.6214 18.9283 65.8811 19.102 66.2078 19.2451C66.5387 19.3882 66.9638 19.4597 67.4832 19.4597C68.1953 19.4597 68.7838 19.2901 69.2487 18.9508C69.7137 18.6156 69.9461 18.08 69.9461 17.3442V15.4924H69.8267C69.7137 15.6927 69.5503 15.9155 69.3367 16.1607C69.1272 16.406 68.8382 16.6186 68.4696 16.7985C68.101 16.9783 67.6214 17.0683 67.0308 17.0683C66.2685 17.0683 65.5816 16.8945 64.97 16.5471C64.3627 16.1955 63.881 15.6784 63.5249 14.9957C63.1731 14.3089 62.9972 13.4648 62.9972 12.4632C62.9972 11.4617 63.171 10.6032 63.5187 9.88781C63.8705 9.17242 64.3522 8.62464 64.9637 8.24446C65.5753 7.86019 66.2685 7.66806 67.0434 7.66806C67.6424 7.66806 68.1262 7.76617 68.4948 7.96239C68.8634 8.15452 69.1503 8.37936 69.3555 8.6369C69.565 8.89444 69.7262 9.12132 69.8393 9.31754H69.9775V7.7907H71.8184V17.4178C71.8184 18.2272 71.6258 18.8915 71.2404 19.4107C70.8551 19.9298 70.3336 20.3141 69.6759 20.5635C69.0225 20.8128 68.2853 20.9375 67.4643 20.9375ZM67.4455 15.5476C67.9858 15.5476 68.4424 15.4249 68.8152 15.1796C69.1922 14.9303 69.477 14.5746 69.6697 14.1127C69.8665 13.6467 69.965 13.0887 69.965 12.4387C69.965 11.8051 69.8686 11.247 69.6759 10.7647C69.4833 10.2823 69.2005 9.90621 68.8278 9.6364C68.455 9.36251 67.9942 9.22556 67.4455 9.22556C66.88 9.22556 66.4088 9.36864 66.0318 9.6548C65.6549 9.93686 65.37 10.3211 65.1774 10.8076C64.9889 11.2941 64.8946 11.8378 64.8946 12.4387C64.8946 13.056 64.991 13.5976 65.1836 14.0636C65.3763 14.5297 65.6611 14.8935 66.0381 15.1551C66.4193 15.4167 66.8884 15.5476 67.4455 15.5476Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M74.161 17.2093V7.7907H76.0396V17.2093H74.161ZM75.1097 6.33744C74.783 6.33744 74.5024 6.23115 74.2678 6.01858C74.0374 5.80192 73.9222 5.54438 73.9222 5.24596C73.9222 4.94345 74.0374 4.68591 74.2678 4.47334C74.5024 4.25668 74.783 4.14835 75.1097 4.14835C75.4364 4.14835 75.715 4.25668 75.9453 4.47334C76.1799 4.68591 76.2972 4.94345 76.2972 5.24596C76.2972 5.54438 76.1799 5.80192 75.9453 6.01858C75.715 6.23115 75.4364 6.33744 75.1097 6.33744Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M82.9828 7.7907V9.26235H77.5292V7.7907H82.9828ZM79.0246 17.2093V6.69922C79.0246 6.11056 79.1565 5.62205 79.4204 5.23369C79.6843 4.84125 80.034 4.54896 80.4696 4.35683C80.9053 4.16061 81.3786 4.0625 81.8896 4.0625C82.2666 4.0625 82.5891 4.09316 82.8572 4.15448C83.1252 4.21171 83.3242 4.26485 83.454 4.31391L83.0142 5.79783C82.9263 5.7733 82.8132 5.74469 82.6749 5.71198C82.5367 5.67519 82.3692 5.6568 82.1723 5.6568C81.7158 5.6568 81.3891 5.76717 81.1922 5.98792C80.9995 6.20867 80.9032 6.52753 80.9032 6.94449V17.2093H79.0246Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M85.9317 20.7413C85.651 20.7413 85.3955 20.7188 85.1651 20.6738C84.9348 20.6329 84.763 20.588 84.6499 20.5389L85.1023 19.0366C85.4458 19.1265 85.7516 19.1654 86.0196 19.1531C86.2877 19.1409 86.5244 19.0427 86.7296 18.8588C86.939 18.6748 87.1233 18.3744 87.2825 17.9574L87.515 17.3319L83.984 7.7907H85.9945L88.4386 15.0999H88.5391L90.9832 7.7907H93L89.0229 18.4663C88.8386 18.9569 88.604 19.3718 88.3192 19.7111C88.0344 20.0545 87.6951 20.312 87.3014 20.4837C86.9076 20.6554 86.4511 20.7413 85.9317 20.7413Z&quot; fill=&quot;black&quot;/>
<path fill-rule=&quot;evenodd&quot; clip-rule=&quot;evenodd&quot; d=&quot;M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25ZM6.33336 10.8363C5.62696 10.5675 5.12502 9.88399 5.12502 9.08325C5.12502 8.04772 5.96449 7.20825 7.00002 7.20825C7.937 7.20825 8.71346 7.89553 8.85276 8.79347C8.95713 8.71964 9.06732 8.65233 9.18336 8.59155C9.65003 8.33599 10.1778 8.20821 10.7667 8.20821C11.3223 8.20821 11.8278 8.33599 12.2834 8.59155C12.6651 8.7964 12.9806 9.07538 13.2297 9.42849C13.499 9.08483 13.828 8.8114 14.2167 8.60821C14.7056 8.34154 15.25 8.20821 15.85 8.20821C16.45 8.20821 16.9889 8.33599 17.4667 8.59155C17.9445 8.83599 18.3223 9.19154 18.6 9.65821C18.8778 10.1249 19.0167 10.6804 19.0167 11.3249V14.3979C19.4863 14.7387 19.7917 15.292 19.7917 15.9165C19.7917 16.9521 18.9523 17.7915 17.9167 17.7915C16.8812 17.7915 16.0417 16.9521 16.0417 15.9165C16.0417 15.2846 16.3543 14.7257 16.8334 14.386V11.6749C16.8334 11.2082 16.6834 10.8471 16.3834 10.5915C16.0945 10.3249 15.7334 10.1915 15.3 10.1915C15.0223 10.1915 14.7611 10.2527 14.5167 10.3749C14.2834 10.486 14.1 10.6527 13.9667 10.8749C13.8334 11.0971 13.7667 11.3638 13.7667 11.6749V14.398C14.2363 14.7387 14.5417 15.292 14.5417 15.9165C14.5417 16.9521 13.7022 17.7915 12.6667 17.7915C11.6311 17.7915 10.7917 16.9521 10.7917 15.9165C10.7917 15.2846 11.1043 14.7257 11.5834 14.386V11.6749C11.5834 11.2082 11.4334 10.8471 11.1334 10.5915C10.8445 10.3249 10.4834 10.1915 10.05 10.1915C9.76114 10.1915 9.50003 10.2527 9.2667 10.3749C9.03337 10.486 8.85003 10.6527 8.7167 10.8749C8.58336 11.0971 8.5167 11.3638 8.5167 11.6749V14.398C8.9863 14.7387 9.29169 15.292 9.29169 15.9165C9.29169 16.9521 8.45222 17.7915 7.41669 17.7915C6.38115 17.7915 5.54169 16.9521 5.54169 15.9165C5.54169 15.2846 5.85432 14.7257 6.33336 14.386V10.8363Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M7.04167 10.1249C7.61696 10.1249 8.08333 9.65855 8.08333 9.08325C8.08333 8.50796 7.61696 8.04158 7.04167 8.04158C6.46637 8.04158 6 8.50796 6 9.08325C6 9.65855 6.46637 10.1249 7.04167 10.1249Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M7.45833 16.9582C8.03363 16.9582 8.5 16.4918 8.5 15.9165C8.5 15.3412 8.03363 14.8749 7.45833 14.8749C6.88304 14.8749 6.41667 15.3412 6.41667 15.9165C6.41667 16.4918 6.88304 16.9582 7.45833 16.9582Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M17.9584 16.9582C18.5337 16.9582 19 16.4918 19 15.9165C19 15.3412 18.5337 14.8749 17.9584 14.8749C17.3831 14.8749 16.9167 15.3412 16.9167 15.9165C16.9167 16.4918 17.3831 16.9582 17.9584 16.9582Z&quot; fill=&quot;black&quot;/>
<path d=&quot;M13.75 15.9165C13.75 16.4918 13.2836 16.9582 12.7083 16.9582C12.133 16.9582 11.6667 16.4918 11.6667 15.9165C11.6667 15.3412 12.133 14.8749 12.7083 14.8749C13.2836 14.8749 13.75 15.3412 13.75 15.9165Z&quot; fill=&quot;black&quot;/>
</svg>" data-astro-cid-6carq7tq><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-4 h-4 shrink-0 text-white/60 group-hover:text-white group-focus-visible:text-white transition-colors"
  class="lucide lucide-type"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M12 4v16" />
  <path d="M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2" />
  <path d="M9 20h6" />
</svg>
<span class="logo-context-menu__label" data-astro-cid-6carq7tq>Copy Wordmark as SVG</span></button><a href="/brand/mergify-brand-assets.zip" download role="menuitem" class="group flex w-full items-center gap-2.5 rounded-lg px-2.5 py-2 text-left text-sm font-medium text-white/90 hover:bg-white/10 hover:text-white focus-visible:bg-white/10 focus-visible:text-white focus-visible:outline-none transition-colors" data-astro-cid-6carq7tq><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-4 h-4 shrink-0 text-white/60 group-hover:text-white group-focus-visible:text-white transition-colors"
  class="lucide lucide-download"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M12 15V3" />
  <path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
  <path d="m7 10 5 5 5-5" />
</svg>
Download Brand Assets</a><hr class="my-1.5 -mx-1.5 border-white/10" data-astro-cid-6carq7tq><a href="/brand" role="menuitem" class="group flex w-full items-center gap-2.5 rounded-lg px-2.5 py-2 text-left text-sm font-medium text-white/90 hover:bg-white/10 hover:text-white focus-visible:bg-white/10 focus-visible:text-white focus-visible:outline-none transition-colors" data-astro-cid-6carq7tq>Visit Brand Guidelines</a></div><script type="module">var e=new WeakSet,t=!1,n=8;function r(){return document.getElementById(`logo-context-menu`)}function i(){return document.querySelector(`[data-brand-menu-trigger]`)}function a(){return r()?.dataset.open===`true`}function o({restoreFocus:e=!0}={}){let t=r();if(t?.dataset.open!==`true`)return;t.dataset.open=`false`;let n=i();n?.setAttribute(`aria-expanded`,`false`),e&&t.contains(document.activeElement)&&n?.focus({preventScroll:!0})}function s(e,t){let a=r();if(!a)return;let{offsetWidth:o,offsetHeight:s}=a,l=e+o+n>window.innerWidth,u=t+s+n>window.innerHeight,d=(e,t,r)=>Math.max(n,Math.min(e,t-r-n));a.style.left=`${d(l?e-o:e,window.innerWidth,o)}px`,a.style.top=`${d(u?t-s:t,window.innerHeight,s)}px`,a.style.transformOrigin=`${u?`bottom`:`top`} ${l?`right`:`left`}`,a.dataset.open=`true`,i()?.setAttribute(`aria-expanded`,`true`),(c(a)[0]??a).focus({preventScroll:!0})}function c(e){return Array.from(e.querySelectorAll(`[role="menuitem"]`))}function l(){let n=r(),l=i();if(n&&!e.has(n)){e.add(n),n.addEventListener(`contextmenu`,e=>e.preventDefault());for(let e of n.querySelectorAll(`[data-copy-svg]`)){let t=e.querySelector(`.logo-context-menu__label`),n=t?.textContent??``,r=0,i=0;e.addEventListener(`click`,async()=>{window.clearTimeout(r),window.clearTimeout(i);try{await navigator.clipboard.writeText(e.dataset.copySvg??``),t&&(t.textContent=`Copied`)}catch{}r=window.setTimeout(()=>{o(),i=window.setTimeout(()=>{t&&(t.textContent=n)},200)},450)})}for(let e of n.querySelectorAll(`a`))e.addEventListener(`click`,()=>o())}l&&!e.has(l)&&(e.add(l),l.addEventListener(`contextmenu`,e=>{e.preventDefault();let{clientX:t,clientY:n}=e;if(t===0&&n===0){let e=l.getBoundingClientRect();t=e.left,n=e.bottom+4}s(t,n)})),!t&&(t=!0,document.addEventListener(`pointerdown`,e=>{if(!a())return;let t=r();t&&e.target instanceof Node&&!t.contains(e.target)&&o({restoreFocus:!1})}),document.addEventListener(`keydown`,e=>{let t=r();if(!(!t||t.dataset.open!==`true`)){if(e.key===`Escape`){o();return}if(e.key===`Tab`){o();return}if(e.key===` `){let n=document.activeElement;n instanceof HTMLAnchorElement&&t.contains(n)&&(e.preventDefault(),n.click());return}if([`ArrowDown`,`ArrowUp`,`Home`,`End`].includes(e.key)){e.preventDefault();let n=c(t);if(n.length===0)return;let r=n.indexOf(document.activeElement),i=0;e.key===`ArrowDown`?i=r<0?0:(r+1)%n.length:e.key===`ArrowUp`?i=r<0?n.length-1:(r-1+n.length)%n.length:e.key===`End`&&(i=n.length-1),n[i].focus()}}}),window.addEventListener(`scroll`,()=>o(),{passive:!0}),window.addEventListener(`resize`,()=>o()))}l(),document.addEventListener(`astro:page-load`,l);</script><!-- Mobile Menu Panel --><div id="mobile-menu" class="fixed inset-0 top-14 z-40 hidden lg:hidden" data-astro-cid-nen7h5rs><div class="h-full bg-gray-200/98 backdrop-blur-sm overflow-y-auto pb-8" data-astro-cid-nen7h5rs><nav class="flex flex-col px-6 pt-2" data-astro-cid-nen7h5rs><!-- Products --><details class="mobile-accordion border-b border-gray-300" data-astro-cid-nen7h5rs><summary class="flex items-center justify-between py-4 cursor-pointer text-base font-medium text-dark" data-astro-cid-nen7h5rs>Products<span class="mobile-accordion-caret" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-4 h-4 transition-transform duration-200"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</span></summary><div class="flex flex-col gap-1 pb-4" data-astro-cid-nen7h5rs><a href="/product/merge-queue" class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-10 h-10 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-teal-700" data-astro-cid-nen7h5rs><svg class="w-5 h-5" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28 10C31.3137 10 34 12.6863 34 16V32C34 35.3137 31.3137 38 28 38H12C8.68629 38 6 35.3137 6 32V16C6 12.6863 8.68629 10 12 10H28ZM12 12C9.79086 12 8 13.7909 8 16V32L8.00488 32.2061C8.11211 34.3194 9.85996 36 12 36H28L28.2061 35.9951C30.2512 35.8913 31.8913 34.2512 31.9951 32.2061L32 32V16C32 13.86 30.3194 12.1121 28.2061 12.0049L28 12H12ZM15 15.5C16.933 15.5 18.5 17.067 18.5 19C18.5 20.565 17.4726 21.8891 16.0557 22.3369C16.2393 23.7521 16.8833 25.0767 17.9033 26.0967C18.923 27.1164 20.2473 27.7595 21.6621 27.9434C22.1101 26.5268 23.4352 25.5 25 25.5C26.933 25.5 28.5 27.067 28.5 29C28.5 30.933 26.933 32.5 25 32.5C23.3979 32.5 22.0483 31.4232 21.6328 29.9541C19.6971 29.7557 17.8776 28.899 16.4893 27.5107C16.3172 27.3387 16.1555 27.1583 16 26.9736V31.5C16 32.0523 15.5523 32.5 15 32.5C14.4477 32.5 14 32.0523 14 31.5V22.3535C12.5545 21.9231 11.5 20.5854 11.5 19C11.5 17.067 13.067 15.5 15 15.5ZM25 27.5C24.1716 27.5 23.5 28.1716 23.5 29C23.5 29.8284 24.1716 30.5 25 30.5C25.8284 30.5 26.5 29.8284 26.5 29C26.5 28.1716 25.8284 27.5 25 27.5ZM15 17.5C14.1716 17.5 13.5 18.1716 13.5 19C13.5 19.8284 14.1716 20.5 15 20.5C15.8284 20.5 16.5 19.8284 16.5 19C16.5 18.1716 15.8284 17.5 15 17.5ZM29 6C29.5523 6 30 6.44772 30 7C30 7.55228 29.5523 8 29 8H11C10.4477 8 10 7.55228 10 7C10 6.44772 10.4477 6 11 6H29ZM27 2C27.5523 2 28 2.44772 28 3C28 3.55228 27.5523 4 27 4H13C12.4477 4 12 3.55228 12 3C12 2.44772 12.4477 2 13 2H27Z" fill="currentColor"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Merge Queue</div><div class="text-xs text-gray-600" data-astro-cid-nen7h5rs>Keep main green. Always.</div></div></a><a href="/product/ci-insights" class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-10 h-10 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-purple-700" data-astro-cid-nen7h5rs><svg class="w-5 h-5" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.6667 5H8.33333C6.49238 5 5 6.49238 5 8.33333V31.6667C5 33.5076 6.49238 35 8.33333 35H31.6667C33.5076 35 35 33.5076 35 31.6667V8.33333C35 6.49238 33.5076 5 31.6667 5Z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.3334 19.9998H25.0001L21.6667 28.3332L18.3334 11.6665L15.0001 19.9998H11.6667" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>CI Insights</div><div class="text-xs text-gray-600" data-astro-cid-nen7h5rs>CI observability and auto-retry</div></div></a><a href="/product/test-insights" class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-10 h-10 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-orange-700" data-astro-cid-nen7h5rs><svg class="w-5 h-5" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 25C22.7614 25 25 22.7614 25 20C25 17.2386 22.7614 15 20 15C17.2386 15 15 17.2386 15 20C15 22.7614 17.2386 25 20 25Z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 11.6667V8.33333C5 7.44928 5.35119 6.60143 5.97631 5.97631C6.60143 5.35119 7.44928 5 8.33333 5H11.6667" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.3333 5H31.6666C32.5506 5 33.3985 5.35119 34.0236 5.97631C34.6487 6.60143 34.9999 7.44928 34.9999 8.33333V11.6667" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.9999 28.3335V31.6668C34.9999 32.5509 34.6487 33.3987 34.0236 34.0239C33.3985 34.649 32.5506 35.0002 31.6666 35.0002H28.3333" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.6667 35.0002H8.33333C7.44928 35.0002 6.60143 34.649 5.97631 34.0239C5.35119 33.3987 5 32.5509 5 31.6668V28.3335" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Test Insights</div><div class="text-xs text-gray-600" data-astro-cid-nen7h5rs>Detect, quarantine, and fix flaky tests</div></div></a><a href="/product/merge-protections" class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-10 h-10 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-blue-700" data-astro-cid-nen7h5rs><svg class="w-5 h-5" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.9998 19.1668L18.3332 22.5001L25.8332 15.0001M33.3332 20.0001C33.3332 28.1808 24.4099 34.1308 21.1632 36.0249C20.7942 36.2402 20.6097 36.3478 20.3493 36.4036C20.1472 36.447 19.8524 36.447 19.6504 36.4036C19.39 36.3478 19.2055 36.2402 18.8365 36.0249C15.5898 34.1308 6.6665 28.1808 6.6665 20.0001V12.0294C6.6665 10.6969 6.6665 10.0307 6.88444 9.45795C7.07696 8.95201 7.38981 8.50057 7.79593 8.14266C8.25566 7.73751 8.8795 7.50357 10.1272 7.03569L19.0635 3.68457C19.41 3.55463 19.5832 3.48966 19.7615 3.46391C19.9196 3.44107 20.0801 3.44107 20.2382 3.46391C20.4164 3.48966 20.5897 3.55463 20.9362 3.68457L29.8725 7.03569C31.1202 7.50357 31.744 7.73751 32.2037 8.14266C32.6099 8.50057 32.9227 8.95201 33.1152 9.45795C33.3332 10.0307 33.3332 10.6969 33.3332 12.0294V20.0001Z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Merge Protections</div><div class="text-xs text-gray-600" data-astro-cid-nen7h5rs>Governance and scheduling</div></div></a><a href="/product/stacks" class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><div class="shrink-0 w-10 h-10 rounded-lg border border-gray-300 bg-gray-200 flex items-center justify-center text-coral-700" data-astro-cid-nen7h5rs><svg class="w-5 h-5" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.5001 16.0003C18.5001 14.5276 17.3062 13.3337 15.8334 13.3337C14.3607 13.3337 13.1667 14.5276 13.1667 16.0003C13.1667 17.4731 14.3607 18.667 15.8334 18.667C17.3062 18.667 18.5001 17.4731 18.5001 16.0003Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.16659 10.6663C9.16659 9.19358 7.97268 7.99967 6.49992 7.99967C5.02716 7.99967 3.83325 9.19358 3.83325 10.6663C3.83325 12.1391 5.02716 13.333 6.49992 13.333C7.97268 13.333 9.16658 12.1391 9.16659 10.6663Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.1666 10.6663C28.1666 9.19358 26.9727 7.99967 25.4999 7.99967C24.0272 7.99967 22.8333 9.19358 22.8333 10.6663C22.8333 12.1391 24.0272 13.333 25.4999 13.333C26.9727 13.333 28.1666 12.1391 28.1666 10.6663Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.5001 5.33333C18.5001 3.86057 17.3062 2.66667 15.8334 2.66667C14.3607 2.66667 13.1667 3.86057 13.1667 5.33333C13.1667 6.80609 14.3607 8 15.8334 8C17.3062 8 18.5001 6.80609 18.5001 5.33333Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.5001 26.6663C18.5001 25.1936 17.3062 23.9997 15.8334 23.9997C14.3607 23.9997 13.1667 25.1936 13.1667 26.6663C13.1667 28.1391 14.3607 29.333 15.8334 29.333C17.3062 29.333 18.5001 28.1391 18.5001 26.6663Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.16659 21.3333C9.16659 19.8606 7.97268 18.6667 6.49992 18.6667C5.02716 18.6667 3.83325 19.8606 3.83325 21.3333C3.83325 22.8061 5.02716 24 6.49992 24C7.97268 24 9.16658 22.8061 9.16659 21.3333Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.1666 21.3333C28.1666 19.8606 26.9727 18.6667 25.4999 18.6667C24.0272 18.6667 22.8333 19.8606 22.8333 21.3333C22.8333 22.8061 24.0272 24 25.4999 24C26.9727 24 28.1666 22.8061 28.1666 21.3333Z" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div><div data-astro-cid-nen7h5rs><div class="text-sm font-medium text-dark" data-astro-cid-nen7h5rs>Stacks</div><div class="text-xs text-gray-600" data-astro-cid-nen7h5rs>Split big PRs into reviewable chains</div></div></a></div></details><!-- Pricing --><a href="/pricing" class="py-4 border-b border-gray-300 text-base font-medium text-dark" data-astro-cid-nen7h5rs>Pricing</a><!-- Resources --><details class="mobile-accordion border-b border-gray-300" data-astro-cid-nen7h5rs><summary class="flex items-center justify-between py-4 cursor-pointer text-base font-medium text-dark" data-astro-cid-nen7h5rs>Resources<span class="mobile-accordion-caret" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-4 h-4 transition-transform duration-200"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</span></summary><div class="flex flex-col gap-1 pb-4" data-astro-cid-nen7h5rs><a href="/learn" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-graduation-cap"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z" />
  <path d="M22 10v6" />
  <path d="M6 12.5V16a6 3 0 0 0 12 0v-3.5" />
</svg>
Learn</a><a href="/customers" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-quote"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" />
  <path d="M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" />
</svg>
Customer Stories</a><a href="/blog" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-newspaper"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M15 18h-5" />
  <path d="M18 14h-8" />
  <path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2" />
  <rect width="8" height="4" x="10" y="6" rx="1" />
</svg>
Blog</a><a href="https://docs.mergify.com/changelog" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-megaphone"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" />
  <path d="M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" />
  <path d="M8 6v8" />
</svg>
Changelog</a><a href="/compare-mergify" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-scale"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M12 3v18" />
  <path d="m19 8 3 8a5 5 0 0 1-6 0zV7" />
  <path d="M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1" />
  <path d="m5 8 3 8a5 5 0 0 1-6 0zV7" />
  <path d="M7 21h10" />
</svg>
Compare</a><a href="/calculator" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors plausible-event-name=Calculator+Click plausible-event-source=nav-mobile" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-calculator"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <rect width="16" height="20" x="4" y="2" rx="2" />
  <line x1="8" x2="16" y1="6" y2="6" />
  <line x1="16" x2="16" y1="14" y2="18" />
  <path d="M16 10h.01" />
  <path d="M12 10h.01" />
  <path d="M8 10h.01" />
  <path d="M12 14h.01" />
  <path d="M8 14h.01" />
  <path d="M12 18h.01" />
  <path d="M8 18h.01" />
</svg>
ROI Calculator</a></div></details><!-- Developers --><details class="mobile-accordion border-b border-gray-300" data-astro-cid-nen7h5rs><summary class="flex items-center justify-between py-4 cursor-pointer text-base font-medium text-dark" data-astro-cid-nen7h5rs>Developers<span class="mobile-accordion-caret" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-4 h-4 transition-transform duration-200"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</span></summary><div class="flex flex-col gap-1 pb-4" data-astro-cid-nen7h5rs><a href="https://docs.mergify.com/" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-book-open"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M12 5v16" />
  <path d="M20.001 19A2 2 0 0022 17V5a2 2 0 00-1.999-2L16 3.002A5 5 0 0012 5a5 5 0 00-4-2H4a2 2 0 00-2 2v12a2 2 0 001.999 2H8a5 5 0 014 2 5 5 0 014-2z" />
</svg>
Documentation</a><a href="https://slack.mergify.com/" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><svg aria-hidden="true" class="w-6 h-6 text-gray-700" role="img" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"/></svg>
Slack Community</a><a href="/integrations" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-puzzle"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" />
</svg>
Integrations</a><a href="https://status.mergify.com/" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-heart-pulse"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5" />
  <path d="M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27" />
</svg>
Service Status</a></div></details><!-- Company --><details class="mobile-accordion border-b border-gray-300" data-astro-cid-nen7h5rs><summary class="flex items-center justify-between py-4 cursor-pointer text-base font-medium text-dark" data-astro-cid-nen7h5rs>Company<span class="mobile-accordion-caret" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-4 h-4 transition-transform duration-200"
  class="lucide lucide-chevron-down"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m6 9 6 6 6-6" />
</svg>
</span></summary><div class="flex flex-col gap-1 pb-4" data-astro-cid-nen7h5rs><a href="/about" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-building-2"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M10 12h4" />
  <path d="M10 8h4" />
  <path d="M14 21v-3a2 2 0 0 0-4 0v3" />
  <path d="M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2" />
  <path d="M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16" />
</svg>
About</a><a href="/careers" class="flex items-center gap-2.5 px-3 py-2.5 text-sm font-medium text-dark rounded-lg hover:bg-gray-100 aria-[current=page]:bg-gray-100 transition-colors" data-astro-cid-nen7h5rs><!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="w-6 h-6 text-gray-700"
  class="lucide lucide-briefcase"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
  <rect width="20" height="14" x="2" y="6" rx="2" />
</svg>
Careers</a></div></details><!-- CTAs --><div class="flex flex-col gap-3 pt-6" data-astro-cid-nen7h5rs><a href="https://dashboard.mergify.com/" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center justify-center transition-colors rounded-xl bg-dark hover:bg-gray-800 text-white font-semibold text-sm px-4 py-3">Sign in <!-- @license lucide-static v1.30.0 - ISC -->
<svg aria-hidden="true" class="inline-block w-3.5 h-3.5 ml-1 transition-transform duration-500 group-hover:translate-x-0.5"
  class="lucide lucide-arrow-right"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M5 12h14" />
  <path d="m12 5 7 7-7 7" />
</svg>
</a><a href="https://docs.mergify.com/" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center justify-center transition-colors rounded-xl bg-white hover:bg-white/80 text-dark font-semibold shadow-[0_10px_10px_-8px_rgba(0,0,0,0.06)] text-sm px-4 py-3">Docs</a></div></nav></div></div><script type="module">var e=null;function t(){e&&(window.scrollY>0?(e.style.boxShadow=`0 4px 4px -2px rgba(0,0,0,0.04), 0 20px 40px -22px rgba(0,0,0,0.04)`,e.classList.remove(`after:border-transparent`),e.classList.add(`after:border-[rgba(0,0,0,0.04)]`)):(e.style.boxShadow=`none`,e.classList.remove(`after:border-[rgba(0,0,0,0.04)]`),e.classList.add(`after:border-transparent`)))}function n(e){let t=document.getElementById(`mobile-menu`),n=document.getElementById(`menu-icon-open`),r=document.getElementById(`menu-icon-close`),i=document.getElementById(`mobile-menu-btn`);t?.classList.toggle(`hidden`,!e),n?.classList.toggle(`hidden`,e),r?.classList.toggle(`hidden`,!e),i?.setAttribute(`aria-expanded`,String(e)),document.body.style.overflow=e?`hidden`:``}var r=!1;function i(){e=document.getElementById(`main-nav`),t();let i=document.getElementById(`mobile-menu-btn`);i&&!i.dataset.bound&&(i.dataset.bound=`true`,i.addEventListener(`click`,()=>{n(document.getElementById(`mobile-menu`)?.classList.contains(`hidden`)??!1)})),r||(r=!0,window.addEventListener(`scroll`,t,{passive:!0}),window.matchMedia(`(min-width: 1024px)`).addEventListener(`change`,e=>{e.matches&&n(!1)}))}i(),document.addEventListener(`astro:page-load`,i);</script><main id="main" tabindex="-1" class="flex-1 scroll-mt-24 focus:outline-none"><section class="pt-20 lg:pt-[112px] pb-2 lg:pb-3"><div class="mx-auto max-w-[960px] px-5 text-center flex flex-col items-center gap-6 hero-fade"><h1 class="heading-hero hero-title-gradient text-[clamp(3.5rem,6vw,4.5rem)] leading-[1.15]">Startup Program</h1><p class="text-xl font-medium tracking-tight text-gray-800">Go from Startup to Scaleup.</p><p class="text-body-lg text-gray-600 max-w-[860px]">Get our plan for free for a maximum of 12 months and 50 seats for your developers.</p><a href="https://forms.mergify.com/startup" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center justify-center transition-colors rounded-xl bg-dark hover:bg-gray-800 text-white font-semibold text-lg px-4 py-2.5">Apply now</a><p class="text-sm text-gray-600">We'll get back to you within 24 hours</p></div></section><section class="py-10 lg:py-16"><div class="mx-auto max-w-[960px] px-5"><div class="bg-dark rounded-2xl grid grid-cols-3 divide-x divide-gray-700"><div class="flex flex-col items-center py-10 lg:py-14 gap-2"><span class="text-4xl lg:text-5xl font-semibold text-white">$12,000</span><span class="text-base text-gray-600">Credit</span></div><div class="flex flex-col items-center py-10 lg:py-14 gap-2"><span class="text-4xl lg:text-5xl font-semibold text-white">12</span><span class="text-base text-gray-600">Months</span></div><div class="flex flex-col items-center py-10 lg:py-14 gap-2"><span class="text-4xl lg:text-5xl font-semibold text-white">50</span><span class="text-base text-gray-600">Seats</span></div></div></div></section><section class="relative pt-6 lg:pt-10 pb-0"><div class="container-content px-5 text-center flex flex-col items-center gap-0"><p class="text-lg font-semibold text-dark">Used by the platform teams that ship fast and keep CI green</p></div></section><section class="py-10 px-10"><div class="mx-auto max-w-[960px] flex items-center justify-center gap-10 lg:gap-14 flex-wrap"><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-cerebras" aria-label="Show customer quote from Cerebras" data-astro-cid-hgxduojl><img src="/_astro/cerebras-logo.BRavnMoG_13nmcg.webp" srcset="/_astro/cerebras-logo.BRavnMoG_13nmcg.webp 1x, /_astro/cerebras-logo.BRavnMoG_ZUV3ls.webp 2x" alt="Cerebras" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="64" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-cerebras" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"Mergify gave us a merge queue that behaves predictably under heavy load. Reliability is everything, and Mergify made stability a solved problem."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/cerebras-avatar.D084JrN2_T9DgJ.webp" alt="Rushin Shah, Sr. Manager DevInfra" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Rushin Shah, Sr. Manager DevInfra</p></div></div></div><script type="module">var e=new WeakSet,t=!1,n=window.matchMedia(`(hover: hover) and (pointer: fine)`).matches;function r(e){return e.querySelector(`.logo-bar-trigger`)}function i(e,t){e.dataset.open=String(t),r(e)?.setAttribute(`aria-expanded`,String(t))}function a(){return Array.from(document.querySelectorAll(`.logo-bar-item`))}function o(e){for(let t of a())t!==e&&i(t,!1)}function s(){for(let t of a()){if(e.has(t))continue;e.add(t);let a=r(t);if(!a)continue;let s=``;if(a.addEventListener(`pointerdown`,e=>{s=e.pointerType}),a.addEventListener(`click`,e=>{if(e.stopPropagation(),n&&s===`mouse`)return;let r=t.dataset.open===`true`;o(t),i(t,!r)}),n){let e;t.addEventListener(`mouseenter`,()=>{e!==void 0&&(window.clearTimeout(e),e=void 0),o(t),i(t,!0)}),t.addEventListener(`mouseleave`,()=>{e=window.setTimeout(()=>{i(t,!1),e=void 0},150)})}a.addEventListener(`focus`,()=>{a.matches(`:focus-visible`)&&(o(t),i(t,!0))}),a.addEventListener(`blur`,()=>{t.dataset.open===`true`&&i(t,!1)})}t||(t=!0,document.addEventListener(`click`,e=>{let t=e.target;t&&(a().some(e=>e.contains(t))||o())}),document.addEventListener(`keydown`,e=>{if(e.key!==`Escape`)return;let t=a().find(e=>e.dataset.open===`true`);t&&(i(t,!1),r(t)?.focus())}))}s(),document.addEventListener(`astro:page-load`,s);</script><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-apex-fintech-solutions" aria-label="Show customer quote from Apex Fintech Solutions" data-astro-cid-hgxduojl><img src="/_astro/apex-logo.CqeXibGT_2bbLmi.webp" srcset="/_astro/apex-logo.CqeXibGT_2bbLmi.webp 1x, /_astro/apex-logo.CqeXibGT_Zvi3HR.webp 2x" alt="Apex Fintech Solutions" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="74" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-apex-fintech-solutions" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"The merge queue is a huge value from Mergify: it keeps our main stable and allows us to merge quickly with confidence."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/apex-avatar.xgQQmT5h_1J9UFY.webp" alt="Minh Tran, Platform Engineer" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Minh Tran, Platform Engineer</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-luminar" aria-label="Show customer quote from Luminar" data-astro-cid-hgxduojl><img src="/_astro/luminar-logo.DarkncxP_ZsoXvc.webp" srcset="/_astro/luminar-logo.DarkncxP_ZsoXvc.webp 1x, /_astro/luminar-logo.DarkncxP_ZJPgTP.webp 2x" alt="Luminar" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="122" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-luminar" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"You get the benefits of Mergify immediately. There is no competitor doing stuff like this."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/luminar-avatar.l6eb9wwZ_ZYL4on.webp" alt="Florian Berchtold, Software Engineer" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Florian Berchtold, Software Engineer</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-back-market" aria-label="Show customer quote from Back Market" data-astro-cid-hgxduojl><img src="/_astro/back-market-logo.Ao93mToa_1DsnoS.webp" srcset="/_astro/back-market-logo.Ao93mToa_1DsnoS.webp 1x, /_astro/back-market-logo.Ao93mToa_15WoFB.webp 2x" alt="Back Market" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="218" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-back-market" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"Since adopting Mergify, our code quality has skyrocketed. We&#39;ve drastically reduced post-deployment bugs."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/back-market-avatar.iFlrgjg0_Z2ngKw5.webp" alt="Bálint Bartha, Senior Platform Engineer" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Bálint Bartha, Senior Platform Engineer</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-jane" aria-label="Show customer quote from Jane" data-astro-cid-hgxduojl><img src="/_astro/jane-logo.Da0qNKe2_ZkztPE.webp" srcset="/_astro/jane-logo.Da0qNKe2_ZkztPE.webp 1x, /_astro/jane-logo.Da0qNKe2_Z17orgY.webp 2x" alt="Jane" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="34" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0"></button><div id="logo-bar-quote-jane" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"We transitioned from manual chaos to over 20 safe deploys per day. Mergify is becoming a critical part of our delivery function."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/jane-avatar.D3nOhORP_1AcRW9.webp" alt="Chris Irving, Engineering Manager" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Chris Irving, Engineering Manager</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-botify" aria-label="Show customer quote from Botify" data-astro-cid-hgxduojl><img src="/_astro/botify-logo.BY2WOBj0_Z4VJdQ.svg" srcset="/_astro/botify-logo.BY2WOBj0_Z4VJdQ.svg 1x, /_astro/botify-logo.BY2WOBj0_1jOLhl.svg 2x" alt="Botify" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="76" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-botify" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"We basically turned GitHub into an autonomous system. Mergify runs the entire choreography for us."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/botify-avatar.CEiz4lzg_1C0zhA.webp" alt="Fabien Marty, Senior Staff Software Engineer" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Fabien Marty, Senior Staff Software Engineer</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-aheadcomputing" aria-label="Show customer quote from AheadComputing" data-astro-cid-hgxduojl><img src="/_astro/aheadcomputing-logo.C-gaUYUC_Z1tb5WG.webp" srcset="/_astro/aheadcomputing-logo.C-gaUYUC_Z1tb5WG.webp 1x, /_astro/aheadcomputing-logo.C-gaUYUC_ePIXk.webp 2x" alt="AheadComputing" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="226" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-aheadcomputing" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"With dozens of engineers and long-running CI jobs, Mergify turned what used to be a daily bottleneck into a background process. Our teams focus on hardware, not merge logistics."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/aheadcomputing-avatar.DLVsP1kx_1Qypf9.webp" alt="Ben Holtzman, Senior Design Enablement Engineer" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Ben Holtzman, Senior Design Enablement Engineer</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-payfit" aria-label="Show customer quote from PayFit" data-astro-cid-hgxduojl><img src="/_astro/payfit-logo.PPz_NkFb_Z1VjjPz.webp" srcset="/_astro/payfit-logo.PPz_NkFb_Z1VjjPz.webp 1x, /_astro/payfit-logo.PPz_NkFb_Z1cK2jX.webp 2x" alt="PayFit" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="90" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-payfit" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"Before Mergify, we spent too much time manually coordinating merges. Now everything flows automatically."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/payfit-avatar.Dbt2mDs1_Zi0npH.webp" alt="Nicolas Beaussart-Hatchuel, Senior Staff Software Engineer" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Nicolas Beaussart-Hatchuel, Senior Staff Software Engineer</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-productboard" aria-label="Show customer quote from Productboard" data-astro-cid-hgxduojl><img src="/_astro/productboard-logo.vlUJeriX_ZUPAW1.webp" srcset="/_astro/productboard-logo.vlUJeriX_ZUPAW1.webp 1x, /_astro/productboard-logo.vlUJeriX_ZzjmQS.webp 2x" alt="Productboard" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="232" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-productboard" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"Mergify was the best fit. It saved a couple of hours per engineer per month and resolved our bottleneck with the merge queue."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/productboard-avatar.BLWEUc0o_ZPopRn.webp" alt="Tomas Nekolny, Engineering Manager" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Tomas Nekolny, Engineering Manager</p></div></div></div><div class="logo-bar-item relative group" data-open="false" data-astro-cid-hgxduojl><button type="button" class="logo-bar-trigger pb-4 -mb-4 appearance-none bg-transparent p-0 border-0 cursor-pointer" aria-expanded="false" aria-controls="logo-bar-quote-zama" aria-label="Show customer quote from Zama" data-astro-cid-hgxduojl><img src="/_astro/zama-logo.CCOAPvig_1p455I.webp" srcset="/_astro/zama-logo.CCOAPvig_1p455I.webp 1x, /_astro/zama-logo.CCOAPvig_m8z48.webp 2x" alt="Zama" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="117" height="28" class="h-7 w-auto object-contain shrink-0 transition-all duration-200 opacity-60 grayscale group-hover:opacity-100 group-hover:grayscale-0 invert"></button><div id="logo-bar-quote-zama" role="tooltip" class="logo-bar-quote fixed lg:absolute inset-x-4 lg:inset-x-auto bottom-6 lg:bottom-auto top-auto lg:top-full lg:left-1/2 lg:-translate-x-1/2 mt-0 lg:mt-4 w-auto lg:w-72 rounded-xl bg-dark p-4 shadow-lg z-30 text-left" data-astro-cid-hgxduojl><div class="logo-bar-quote-arrow hidden lg:block absolute -top-2 left-1/2 -translate-x-1/2 w-4 h-4 bg-dark rotate-45 rounded-sm" data-astro-cid-hgxduojl></div><p class="text-sm text-white/80 leading-relaxed relative z-10" data-astro-cid-hgxduojl>"The support on Slack is really good, reactive and transparent. We have other partners where problems feel less transparent. With Mergify, it&#39;s fluid."</p><div class="mt-3 flex items-center gap-2 relative z-10" data-astro-cid-hgxduojl><img src="/_astro/zama-avatar-clement.DmwpA3x4_B4Ftw.webp" alt="Clément Danjou, VP Blockchain" data-astro-cid-hgxduojl="true" loading="lazy" decoding="async" width="24" height="24" class="w-6 h-6 rounded-full object-cover"><p class="text-xs text-white/50" data-astro-cid-hgxduojl>Clément Danjou, VP Blockchain</p></div></div></div></div></section><section class="py-12 lg:py-20"><div class="mx-auto max-w-[var(--container-max-width)] px-5 flex flex-col gap-10 lg:gap-16"><!-- Step 1: Apply --><div class="bg-gray-250 border border-gray-300 rounded-2xl px-8 lg:px-12 py-12 lg:py-16 flex flex-col items-center gap-8"><div class="w-10 h-10 rounded-full bg-dark text-white flex items-center justify-center text-lg font-semibold">1</div><div class="text-center max-w-[600px] flex flex-col gap-4"><h2 class="heading-section text-dark">Apply to our startup program</h2><p class="text-body-lg text-gray-600">Tell us a little more about your company and book an onboarding call with our team. To be eligible you must:</p></div><div class="grid grid-cols-1 md:grid-cols-3 gap-8 w-full max-w-[800px]"><div class="flex items-start gap-4"><div class="relative shrink-0 w-16 h-16"><!-- Colored shadow (bottom-left) --><div class="absolute bottom-0 left-0 w-[58px] h-[58px] rounded-[20px]" style="background: linear-gradient(211deg, rgba(0,0,0,0) 48%, var(--color-gray-500) 90%)"></div><!-- White-to-dark overlay (top-right) --><div class="absolute top-0 right-0 w-[58px] h-[58px] rounded-[20px]" style="background: linear-gradient(151deg, rgba(255,255,255,0.9) 7%, rgba(0,0,0,0.1) 89%)"></div><!-- Icon container (top-right, slightly inset) --><div class="absolute flex items-center justify-center overflow-hidden w-[56px] h-[56px] rounded-[19px]" style="top: 1px; right: 1px; background: radial-gradient(100% 93% at 50% 122.9%, #ededed 0%, #e6e7ea 100%)"><div class="absolute inset-0 rounded-[19px]" style="background: linear-gradient(315deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 65%)"></div><div class="w-8 h-8"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-full h-full"
  class="lucide lucide-square-check"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <rect width="18" height="18" x="3" y="3" rx="2" />
  <path d="m9 12 2 2 4-4" />
</svg>
</div></div></div><div class="pt-2"><p class="text-base font-semibold text-dark">Early stage</p><p class="text-sm text-gray-600 mt-1">Exists for less than 2 years</p></div></div><div class="flex items-start gap-4"><div class="relative shrink-0 w-16 h-16"><!-- Colored shadow (bottom-left) --><div class="absolute bottom-0 left-0 w-[58px] h-[58px] rounded-[20px]" style="background: linear-gradient(211deg, rgba(0,0,0,0) 48%, var(--color-gray-500) 90%)"></div><!-- White-to-dark overlay (top-right) --><div class="absolute top-0 right-0 w-[58px] h-[58px] rounded-[20px]" style="background: linear-gradient(151deg, rgba(255,255,255,0.9) 7%, rgba(0,0,0,0.1) 89%)"></div><!-- Icon container (top-right, slightly inset) --><div class="absolute flex items-center justify-center overflow-hidden w-[56px] h-[56px] rounded-[19px]" style="top: 1px; right: 1px; background: radial-gradient(100% 93% at 50% 122.9%, #ededed 0%, #e6e7ea 100%)"><div class="absolute inset-0 rounded-[19px]" style="background: linear-gradient(315deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 65%)"></div><div class="w-8 h-8"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-full h-full"
  class="lucide lucide-square-check"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <rect width="18" height="18" x="3" y="3" rx="2" />
  <path d="m9 12 2 2 4-4" />
</svg>
</div></div></div><div class="pt-2"><p class="text-base font-semibold text-dark">Small teams</p><p class="text-sm text-gray-600 mt-1">50 or less employees</p></div></div><div class="flex items-start gap-4"><div class="relative shrink-0 w-16 h-16"><!-- Colored shadow (bottom-left) --><div class="absolute bottom-0 left-0 w-[58px] h-[58px] rounded-[20px]" style="background: linear-gradient(211deg, rgba(0,0,0,0) 48%, var(--color-gray-500) 90%)"></div><!-- White-to-dark overlay (top-right) --><div class="absolute top-0 right-0 w-[58px] h-[58px] rounded-[20px]" style="background: linear-gradient(151deg, rgba(255,255,255,0.9) 7%, rgba(0,0,0,0.1) 89%)"></div><!-- Icon container (top-right, slightly inset) --><div class="absolute flex items-center justify-center overflow-hidden w-[56px] h-[56px] rounded-[19px]" style="top: 1px; right: 1px; background: radial-gradient(100% 93% at 50% 122.9%, #ededed 0%, #e6e7ea 100%)"><div class="absolute inset-0 rounded-[19px]" style="background: linear-gradient(315deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 65%)"></div><div class="w-8 h-8"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-full h-full"
  class="lucide lucide-square-check"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <rect width="18" height="18" x="3" y="3" rx="2" />
  <path d="m9 12 2 2 4-4" />
</svg>
</div></div></div><div class="pt-2"><p class="text-base font-semibold text-dark">New customer</p><p class="text-sm text-gray-600 mt-1">Not already a Mergify customer</p></div></div></div></div><!-- Step 2: Get an answer --><div class="bg-gray-250 border border-gray-300 rounded-2xl px-8 lg:px-12 py-12 lg:py-16 flex flex-col items-center gap-8"><div class="w-10 h-10 rounded-full bg-dark text-white flex items-center justify-center text-lg font-semibold">2</div><div class="text-center max-w-[600px] flex flex-col gap-4"><h2 class="heading-section text-gray-500">Get an answer within 24h</h2><p class="text-body-lg text-gray-600">We'll meet with you to confirm your eligibility and get you set up with a Plain workspace.</p></div><!-- Gmail-style email mockup --><div class="w-full max-w-[600px] bg-white rounded-xl border border-gray-300 shadow-sm overflow-hidden"><!-- Subject bar --><div class="px-5 py-3 border-b border-gray-300 flex items-center justify-between"><span class="text-sm font-medium text-dark">Welcome to our Mergify Startup Program! 🎉</span><div class="flex items-center gap-3 text-gray-600"><span class="text-xs">&larr;</span><span class="text-xs">&rarr;</span></div></div><!-- Sender info --><div class="px-5 pt-4 pb-2 flex items-start gap-3"><img src="/_astro/julien-danjou.BlZaZaQ4_1rROmu.webp" alt="Julien Danjou" loading="lazy" decoding="async" width="40" height="40" class="w-10 h-10 rounded-full object-cover shrink-0"><div class="flex-1 min-w-0"><div class="flex items-center gap-2 flex-wrap"><span class="text-sm font-semibold text-dark">Julien from Mergify</span><span class="text-xs text-gray-600">&lt;julien@mergify.com&gt;</span><span class="text-xs text-gray-600 ml-auto">1 hour ago</span></div><p class="text-xs text-gray-600 mt-0.5">To me</p></div></div><!-- Blurred body placeholder --><div class="px-5 pb-5 pt-2 flex flex-col gap-2"><div class="h-2.5 bg-gray-100 rounded-full w-full"></div><div class="h-2.5 bg-gray-100 rounded-full w-[90%]"></div><div class="h-2.5 bg-gray-100 rounded-full w-[75%]"></div><div class="h-2.5 bg-gray-100 rounded-full w-[85%]"></div></div></div></div><!-- Step 3: Onboarding call --><div class="bg-gray-250 border border-gray-300 rounded-2xl px-8 lg:px-12 py-12 lg:py-16 flex flex-col items-center gap-8"><div class="w-10 h-10 rounded-full bg-dark text-white flex items-center justify-center text-lg font-semibold">3</div><div class="text-center max-w-[600px] flex flex-col gap-4"><h2 class="heading-section text-gray-500">Join a quick onboarding call</h2><p class="text-body-lg text-gray-600">We'll meet with you to confirm your eligibility and help you get started with Mergify</p></div><!-- Calendar mockup --><div class="w-full max-w-[400px] bg-white rounded-xl border border-gray-300 shadow-sm px-5 py-4 flex items-center gap-4"><div class="w-10 h-10 rounded-lg bg-blue-700/10 flex items-center justify-center shrink-0"><div class="w-5 h-5 text-blue-700"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-5 h-5"
  class="lucide lucide-video"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5" />
  <rect x="2" y="6" width="14" height="12" rx="2" />
</svg>
</div></div><div><p class="text-sm font-semibold text-dark">Mergify Startup Program onboarding call</p><p class="text-xs text-gray-600">Today at 9:00 AM</p></div></div></div></div></section><section><div class="container-content px-5"><div class="border-t border-gray-300"></div><div class="grid grid-cols-1 md:grid-cols-3 gap-8 py-12 lg:py-16"><p class="text-subtitle text-gray-500"><strong class="text-dark"><span>2k+ </span><span>organizations </span></strong><span>and </span><strong class="text-dark"><span>25k+ </span><span>users </span></strong><span>use </span><span>Mergify </span><span>daily </span><span>in </span><span>their </span><span>development </span><span>workflow </span></p><p class="text-subtitle text-gray-500"><span>Mergify </span><span>is </span><span>used </span><span>across </span><strong class="text-dark"><span>300k+ </span><span>repositories </span></strong></p><p class="text-subtitle text-gray-500"><strong class="text-dark"><span>75k+ </span><span>pull </span><span>requests </span></strong><span>automatically </span><span>merged </span><span>every </span><span>month </span></p></div><div class="border-t border-gray-300"></div></div></section><section class="py-[60px]"><div class="container-content px-5"><div class="border-t border-gray-300 mb-10 lg:mb-14"></div><div class="flex flex-col gap-10"><div class="flex flex-col gap-2"><h2 class="heading-section text-dark">Real teams, <span class="text-gray-500">real results</span></h2><p class="text-body-lg text-gray-600">Engineering teams we helped merge faster, safer, and cheaper</p></div><div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4"><div class="animate-card-enter"><a href="/customers/cerebras" class="text-white rounded-2xl p-6 flex flex-col justify-between bg-dark-gradient hover:brightness-125 transition-all duration-300 group [transform-origin:center] hover:[transform:perspective(600px)_rotateY(-3deg)_rotateX(2deg)] aspect-[3/4]"><!-- Top: logo + arrow --><div class="flex items-start justify-between flex-1"><img src="/_astro/cerebras-logo.BRavnMoG_Z9Ltne.webp" alt="Cerebras" loading="lazy" decoding="async" width="512" height="225" class="h-6 w-auto opacity-80"><div class="w-8 h-8 rounded-full bg-gray-200 flex items-center justify-center text-dark opacity-0 scale-0 origin-top-right group-hover:opacity-100 group-hover:scale-100 transition-all duration-500 ease-out"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-4 h-4 scale-150 group-hover:scale-100 transition-transform duration-500 ease-out"
  class="lucide lucide-arrow-up-right"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M7 7h10v10" />
  <path d="M7 17 17 7" />
</svg>
</div></div><!-- Title + read story --><div class="flex flex-col mb-4"><h3 class="text-lg font-medium leading-snug transition-transform duration-300 group-hover:-translate-y-2">Scaling AI Hardware CI Throughput With Batch Merge &amp; Two-Step CI</h3><span class="text-sm font-medium text-white/60 max-h-0 opacity-0 overflow-hidden transition-all duration-300 group-hover:max-h-8 group-hover:opacity-100 group-hover:mt-2">Read story &rarr;</span></div><!-- Bottom: company info --><div class="border-t border-white/10 pt-4"><p class="font-semibold text-sm">Cerebras</p><p class="text-xs text-white/40 mt-0.5">350 engineers &middot; AI Infrastructure</p></div></a></div><div class="animate-card-enter"><a href="/customers/apex" class="text-white rounded-2xl p-6 flex flex-col justify-between bg-dark-gradient hover:brightness-125 transition-all duration-300 group [transform-origin:center] hover:[transform:perspective(600px)_rotateY(-3deg)_rotateX(2deg)] aspect-[3/4]"><!-- Top: logo + arrow --><div class="flex items-start justify-between flex-1"><img src="/_astro/apex-logo.CqeXibGT_C3w9A.webp" alt="Apex Fintech Solutions" loading="lazy" decoding="async" width="133" height="50" class="h-6 w-auto opacity-80"><div class="w-8 h-8 rounded-full bg-gray-200 flex items-center justify-center text-dark opacity-0 scale-0 origin-top-right group-hover:opacity-100 group-hover:scale-100 transition-all duration-500 ease-out"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-4 h-4 scale-150 group-hover:scale-100 transition-transform duration-500 ease-out"
  class="lucide lucide-arrow-up-right"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M7 7h10v10" />
  <path d="M7 17 17 7" />
</svg>
</div></div><!-- Title + read story --><div class="flex flex-col mb-4"><h3 class="text-lg font-medium leading-snug transition-transform duration-300 group-hover:-translate-y-2">Scaling Monorepo CI and Improving Delivery Reliability with Mergify</h3><span class="text-sm font-medium text-white/60 max-h-0 opacity-0 overflow-hidden transition-all duration-300 group-hover:max-h-8 group-hover:opacity-100 group-hover:mt-2">Read story &rarr;</span></div><!-- Bottom: company info --><div class="border-t border-white/10 pt-4"><p class="font-semibold text-sm">Apex Fintech Solutions</p><p class="text-xs text-white/40 mt-0.5">350 engineers &middot; Financial Technology</p></div></a></div><div class="animate-card-enter"><a href="/customers/back-market" class="text-white rounded-2xl p-6 flex flex-col justify-between bg-dark-gradient hover:brightness-125 transition-all duration-300 group [transform-origin:center] hover:[transform:perspective(600px)_rotateY(-3deg)_rotateX(2deg)] aspect-[3/4]"><!-- Top: logo + arrow --><div class="flex items-start justify-between flex-1"><img src="/_astro/back-market-logo.Ao93mToa_ZShKtG.webp" alt="Back Market" loading="lazy" decoding="async" width="785" height="101" class="h-6 w-auto opacity-80"><div class="w-8 h-8 rounded-full bg-gray-200 flex items-center justify-center text-dark opacity-0 scale-0 origin-top-right group-hover:opacity-100 group-hover:scale-100 transition-all duration-500 ease-out"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-4 h-4 scale-150 group-hover:scale-100 transition-transform duration-500 ease-out"
  class="lucide lucide-arrow-up-right"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M7 7h10v10" />
  <path d="M7 17 17 7" />
</svg>
</div></div><!-- Title + read story --><div class="flex flex-col mb-4"><h3 class="text-lg font-medium leading-snug transition-transform duration-300 group-hover:-translate-y-2">Optimizing the release process &amp; improving the engineers&#39; lives</h3><span class="text-sm font-medium text-white/60 max-h-0 opacity-0 overflow-hidden transition-all duration-300 group-hover:max-h-8 group-hover:opacity-100 group-hover:mt-2">Read story &rarr;</span></div><!-- Bottom: company info --><div class="border-t border-white/10 pt-4"><p class="font-semibold text-sm">Back Market</p><p class="text-xs text-white/40 mt-0.5">300 engineers &middot; E-commerce</p></div></a></div><div class="animate-card-enter"><a href="/customers/payfit" class="text-white rounded-2xl p-6 flex flex-col justify-between bg-dark-gradient hover:brightness-125 transition-all duration-300 group [transform-origin:center] hover:[transform:perspective(600px)_rotateY(-3deg)_rotateX(2deg)] aspect-[3/4]"><!-- Top: logo + arrow --><div class="flex items-start justify-between flex-1"><img src="/_astro/payfit-logo.PPz_NkFb_Z13kdiH.webp" alt="PayFit" loading="lazy" decoding="async" width="394" height="122" class="h-6 w-auto opacity-80"><div class="w-8 h-8 rounded-full bg-gray-200 flex items-center justify-center text-dark opacity-0 scale-0 origin-top-right group-hover:opacity-100 group-hover:scale-100 transition-all duration-500 ease-out"><!-- @license lucide-static v1.30.0 - ISC -->
<svg class="w-4 h-4 scale-150 group-hover:scale-100 transition-transform duration-500 ease-out"
  class="lucide lucide-arrow-up-right"
  xmlns="http://www.w3.org/2000/svg"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <path d="M7 7h10v10" />
  <path d="M7 17 17 7" />
</svg>
</div></div><!-- Title + read story --><div class="flex flex-col mb-4"><h3 class="text-lg font-medium leading-snug transition-transform duration-300 group-hover:-translate-y-2">Boosting Developer Velocity and CI Reliability with Mergify</h3><span class="text-sm font-medium text-white/60 max-h-0 opacity-0 overflow-hidden transition-all duration-300 group-hover:max-h-8 group-hover:opacity-100 group-hover:mt-2">Read story &rarr;</span></div><!-- Bottom: company info --><div class="border-t border-white/10 pt-4"><p class="font-semibold text-sm">PayFit</p><p class="text-xs text-white/40 mt-0.5">150 engineers &middot; HR Tech</p></div></a></div></div></div></div></section><section class="pt-6 pb-16 lg:pt-10 lg:pb-24 animate-on-scroll"><div class="container-content px-6 lg:px-10"><div class="border-t border-gray-300 mb-20 lg:mb-28"></div><div class="flex flex-col lg:flex-row items-start lg:items-center justify-between gap-8 px-5 lg:px-10"><div class="max-w-[720px] flex flex-col gap-4"><h2 class="heading-section bg-gradient-to-r from-dark to-gray-500 bg-clip-text text-transparent">Join our Startup Program</h2><p class="text-subtitle text-gray-600">2k+ organizations use Mergify to merge 75k+ pull requests a month without breaking main.</p></div><div class="flex items-center gap-2 shrink-0"><a href="https://forms.mergify.com/startup" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center justify-center transition-colors rounded-xl bg-dark hover:bg-gray-800 text-white font-semibold text-lg px-4 py-2.5">Apply now</a></div></div></div></section></main><footer class="pb-20"><div class="container-content px-5 border-t border-gray-300 pt-20"><div class="flex flex-col lg:flex-row gap-12"><!-- Left: Brand + Social --><div class="w-full lg:w-[320px] shrink-0 flex flex-col justify-between gap-6"><div class="flex flex-col gap-1"><a href="/" class="inline-block text-dark" aria-label="Mergify home"><span><svg width="89" height="24" aria-label="Mergify" width="93" height="25" viewBox="0 0 93 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.4833 17.2093V7.7907H33.2865V9.32367H33.4059C33.6069 8.80451 33.9357 8.3998 34.3923 8.10956C34.8489 7.81523 35.3955 7.66806 36.0322 7.66806C36.6772 7.66806 37.2175 7.81523 37.6532 8.10956C38.093 8.40389 38.4176 8.80859 38.627 9.32367H38.7275C38.9579 8.82086 39.3244 8.42024 39.8271 8.12182C40.3297 7.81931 40.9287 7.66806 41.624 7.66806C42.4994 7.66806 43.2136 7.93582 43.7665 8.47134C44.3236 9.00686 44.6021 9.81423 44.6021 10.8934V17.2093H42.7235V11.0651C42.7235 10.4274 42.5455 9.96548 42.1895 9.67932C41.8334 9.39317 41.4083 9.25009 40.914 9.25009C40.3025 9.25009 39.8271 9.43405 39.4878 9.80196C39.1485 10.1658 38.9789 10.6339 38.9789 11.2062V17.2093H37.1065V10.9486C37.1065 10.4376 36.9432 10.0268 36.6165 9.71611C36.2898 9.40543 35.8646 9.25009 35.341 9.25009C34.985 9.25009 34.6562 9.34207 34.3546 9.52603C34.0572 9.70589 33.8164 9.9573 33.6321 10.2803C33.452 10.6032 33.3619 10.9772 33.3619 11.4024V17.2093H31.4833Z" fill="currentColor"/>
<path d="M51.1024 17.3994C50.1516 17.3994 49.3327 17.2011 48.6458 16.8046C47.963 16.404 47.4352 15.8419 47.0625 15.1183C46.6939 14.3907 46.5096 13.5383 46.5096 12.5613C46.5096 11.5966 46.6939 10.7463 47.0625 10.0104C47.4352 9.27462 47.9546 8.70026 48.6206 8.28738C49.2908 7.8745 50.0741 7.66806 50.9705 7.66806C51.515 7.66806 52.0428 7.75595 52.5538 7.93173C53.0648 8.10751 53.5234 8.38345 53.9297 8.75954C54.336 9.13563 54.6565 9.62414 54.891 10.2251C55.1256 10.8219 55.2429 11.5475 55.2429 12.4019V13.0519H47.5714V11.6783H53.402C53.402 11.1959 53.3014 10.7688 53.1004 10.3968C52.8993 10.0207 52.6166 9.72429 52.2522 9.50763C51.892 9.29097 51.4689 9.18264 50.983 9.18264C50.4553 9.18264 49.9945 9.30937 49.6008 9.56282C49.2112 9.81218 48.9096 10.1392 48.696 10.5439C48.4866 10.9445 48.3819 11.3799 48.3819 11.85V12.9231C48.3819 13.5526 48.495 14.0882 48.7212 14.5297C48.9515 14.9712 49.272 15.3084 49.6825 15.5414C50.0929 15.7703 50.5725 15.8848 51.1213 15.8848C51.4773 15.8848 51.8019 15.8358 52.0951 15.7376C52.3883 15.6354 52.6417 15.4842 52.8553 15.2839C53.069 15.0836 53.2323 14.8363 53.3454 14.5419L55.1235 14.8546C54.9811 15.3656 54.7256 15.8133 54.357 16.1975C53.9926 16.5777 53.5339 16.8741 52.981 17.0867C52.4323 17.2951 51.8061 17.3994 51.1024 17.3994Z" fill="currentColor"/>
<path d="M57.1503 17.2093V7.7907H58.9661V9.28688H59.0666C59.2425 8.77998 59.5525 8.3814 59.9965 8.09116C60.4447 7.79683 60.9515 7.64966 61.517 7.64966C61.6343 7.64966 61.7725 7.65375 61.9316 7.66193C62.095 7.6701 62.2228 7.68032 62.3149 7.69259V9.44631C62.2395 9.42587 62.1055 9.40339 61.9128 9.37886C61.7201 9.35024 61.5274 9.33594 61.3348 9.33594C60.8908 9.33594 60.4949 9.42792 60.1473 9.61187C59.8038 9.79174 59.5316 10.0432 59.3305 10.3661C59.1294 10.685 59.0289 11.0488 59.0289 11.4576V17.2093H57.1503Z" fill="currentColor"/>
<path d="M67.4643 20.9375C66.6978 20.9375 66.0381 20.8394 65.4852 20.6432C64.9365 20.4469 64.4883 20.1874 64.1407 19.8644C63.793 19.5415 63.5333 19.1879 63.3616 18.8036L64.9763 18.1536C65.0894 18.3335 65.2402 18.5236 65.4287 18.7239C65.6214 18.9283 65.8811 19.102 66.2078 19.2451C66.5387 19.3882 66.9638 19.4597 67.4832 19.4597C68.1953 19.4597 68.7838 19.2901 69.2487 18.9508C69.7137 18.6156 69.9461 18.08 69.9461 17.3442V15.4924H69.8267C69.7137 15.6927 69.5503 15.9155 69.3367 16.1607C69.1272 16.406 68.8382 16.6186 68.4696 16.7985C68.101 16.9783 67.6214 17.0683 67.0308 17.0683C66.2685 17.0683 65.5816 16.8945 64.97 16.5471C64.3627 16.1955 63.881 15.6784 63.5249 14.9957C63.1731 14.3089 62.9972 13.4648 62.9972 12.4632C62.9972 11.4617 63.171 10.6032 63.5187 9.88781C63.8705 9.17242 64.3522 8.62464 64.9637 8.24446C65.5753 7.86019 66.2685 7.66806 67.0434 7.66806C67.6424 7.66806 68.1262 7.76617 68.4948 7.96239C68.8634 8.15452 69.1503 8.37936 69.3555 8.6369C69.565 8.89444 69.7262 9.12132 69.8393 9.31754H69.9775V7.7907H71.8184V17.4178C71.8184 18.2272 71.6258 18.8915 71.2404 19.4107C70.8551 19.9298 70.3336 20.3141 69.6759 20.5635C69.0225 20.8128 68.2853 20.9375 67.4643 20.9375ZM67.4455 15.5476C67.9858 15.5476 68.4424 15.4249 68.8152 15.1796C69.1922 14.9303 69.477 14.5746 69.6697 14.1127C69.8665 13.6467 69.965 13.0887 69.965 12.4387C69.965 11.8051 69.8686 11.247 69.6759 10.7647C69.4833 10.2823 69.2005 9.90621 68.8278 9.6364C68.455 9.36251 67.9942 9.22556 67.4455 9.22556C66.88 9.22556 66.4088 9.36864 66.0318 9.6548C65.6549 9.93686 65.37 10.3211 65.1774 10.8076C64.9889 11.2941 64.8946 11.8378 64.8946 12.4387C64.8946 13.056 64.991 13.5976 65.1836 14.0636C65.3763 14.5297 65.6611 14.8935 66.0381 15.1551C66.4193 15.4167 66.8884 15.5476 67.4455 15.5476Z" fill="currentColor"/>
<path d="M74.161 17.2093V7.7907H76.0396V17.2093H74.161ZM75.1097 6.33744C74.783 6.33744 74.5024 6.23115 74.2678 6.01858C74.0374 5.80192 73.9222 5.54438 73.9222 5.24596C73.9222 4.94345 74.0374 4.68591 74.2678 4.47334C74.5024 4.25668 74.783 4.14835 75.1097 4.14835C75.4364 4.14835 75.715 4.25668 75.9453 4.47334C76.1799 4.68591 76.2972 4.94345 76.2972 5.24596C76.2972 5.54438 76.1799 5.80192 75.9453 6.01858C75.715 6.23115 75.4364 6.33744 75.1097 6.33744Z" fill="currentColor"/>
<path d="M82.9828 7.7907V9.26235H77.5292V7.7907H82.9828ZM79.0246 17.2093V6.69922C79.0246 6.11056 79.1565 5.62205 79.4204 5.23369C79.6843 4.84125 80.034 4.54896 80.4696 4.35683C80.9053 4.16061 81.3786 4.0625 81.8896 4.0625C82.2666 4.0625 82.5891 4.09316 82.8572 4.15448C83.1252 4.21171 83.3242 4.26485 83.454 4.31391L83.0142 5.79783C82.9263 5.7733 82.8132 5.74469 82.6749 5.71198C82.5367 5.67519 82.3692 5.6568 82.1723 5.6568C81.7158 5.6568 81.3891 5.76717 81.1922 5.98792C80.9995 6.20867 80.9032 6.52753 80.9032 6.94449V17.2093H79.0246Z" fill="currentColor"/>
<path d="M85.9317 20.7413C85.651 20.7413 85.3955 20.7188 85.1651 20.6738C84.9348 20.6329 84.763 20.588 84.6499 20.5389L85.1023 19.0366C85.4458 19.1265 85.7516 19.1654 86.0196 19.1531C86.2877 19.1409 86.5244 19.0427 86.7296 18.8588C86.939 18.6748 87.1233 18.3744 87.2825 17.9574L87.515 17.3319L83.984 7.7907H85.9945L88.4386 15.0999H88.5391L90.9832 7.7907H93L89.0229 18.4663C88.8386 18.9569 88.604 19.3718 88.3192 19.7111C88.0344 20.0545 87.6951 20.312 87.3014 20.4837C86.9076 20.6554 86.4511 20.7413 85.9317 20.7413Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25ZM6.33336 10.8363C5.62696 10.5675 5.12502 9.88399 5.12502 9.08325C5.12502 8.04772 5.96449 7.20825 7.00002 7.20825C7.937 7.20825 8.71346 7.89553 8.85276 8.79347C8.95713 8.71964 9.06732 8.65233 9.18336 8.59155C9.65003 8.33599 10.1778 8.20821 10.7667 8.20821C11.3223 8.20821 11.8278 8.33599 12.2834 8.59155C12.6651 8.7964 12.9806 9.07538 13.2297 9.42849C13.499 9.08483 13.828 8.8114 14.2167 8.60821C14.7056 8.34154 15.25 8.20821 15.85 8.20821C16.45 8.20821 16.9889 8.33599 17.4667 8.59155C17.9445 8.83599 18.3223 9.19154 18.6 9.65821C18.8778 10.1249 19.0167 10.6804 19.0167 11.3249V14.3979C19.4863 14.7387 19.7917 15.292 19.7917 15.9165C19.7917 16.9521 18.9523 17.7915 17.9167 17.7915C16.8812 17.7915 16.0417 16.9521 16.0417 15.9165C16.0417 15.2846 16.3543 14.7257 16.8334 14.386V11.6749C16.8334 11.2082 16.6834 10.8471 16.3834 10.5915C16.0945 10.3249 15.7334 10.1915 15.3 10.1915C15.0223 10.1915 14.7611 10.2527 14.5167 10.3749C14.2834 10.486 14.1 10.6527 13.9667 10.8749C13.8334 11.0971 13.7667 11.3638 13.7667 11.6749V14.398C14.2363 14.7387 14.5417 15.292 14.5417 15.9165C14.5417 16.9521 13.7022 17.7915 12.6667 17.7915C11.6311 17.7915 10.7917 16.9521 10.7917 15.9165C10.7917 15.2846 11.1043 14.7257 11.5834 14.386V11.6749C11.5834 11.2082 11.4334 10.8471 11.1334 10.5915C10.8445 10.3249 10.4834 10.1915 10.05 10.1915C9.76114 10.1915 9.50003 10.2527 9.2667 10.3749C9.03337 10.486 8.85003 10.6527 8.7167 10.8749C8.58336 11.0971 8.5167 11.3638 8.5167 11.6749V14.398C8.9863 14.7387 9.29169 15.292 9.29169 15.9165C9.29169 16.9521 8.45222 17.7915 7.41669 17.7915C6.38115 17.7915 5.54169 16.9521 5.54169 15.9165C5.54169 15.2846 5.85432 14.7257 6.33336 14.386V10.8363Z" fill="currentColor"/>
<path d="M7.04167 10.1249C7.61696 10.1249 8.08333 9.65855 8.08333 9.08325C8.08333 8.50796 7.61696 8.04158 7.04167 8.04158C6.46637 8.04158 6 8.50796 6 9.08325C6 9.65855 6.46637 10.1249 7.04167 10.1249Z" fill="currentColor"/>
<path d="M7.45833 16.9582C8.03363 16.9582 8.5 16.4918 8.5 15.9165C8.5 15.3412 8.03363 14.8749 7.45833 14.8749C6.88304 14.8749 6.41667 15.3412 6.41667 15.9165C6.41667 16.4918 6.88304 16.9582 7.45833 16.9582Z" fill="currentColor"/>
<path d="M17.9584 16.9582C18.5337 16.9582 19 16.4918 19 15.9165C19 15.3412 18.5337 14.8749 17.9584 14.8749C17.3831 14.8749 16.9167 15.3412 16.9167 15.9165C16.9167 16.4918 17.3831 16.9582 17.9584 16.9582Z" fill="currentColor"/>
<path d="M13.75 15.9165C13.75 16.4918 13.2836 16.9582 12.7083 16.9582C12.133 16.9582 11.6667 16.4918 11.6667 15.9165C11.6667 15.3412 12.133 14.8749 12.7083 14.8749C13.2836 14.8749 13.75 15.3412 13.75 15.9165Z" fill="currentColor"/>
</svg>
</span></a><p class="text-base font-medium tracking-tight text-gray-600">Stop breaking main.<br>Keep merges safe.</p></div><div class="flex items-center gap-4"><span class="text-base font-semibold text-gray-800">Find us on</span><div class="flex items-center gap-1 -mx-2"><a href="https://twitter.com/mergifyio" class="inline-flex items-center justify-center p-2 text-dark hover:text-gray-700 transition-colors" aria-label="X (Twitter)" target="_blank" rel="noopener noreferrer"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 512 512" aria-hidden="true"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9L389.2 48zm-24.8 373.8h39.1L151.1 88h-42l255.3 333.8z" /></svg></a><a href="https://www.linkedin.com/company/mergify/" class="inline-flex items-center justify-center p-2 text-dark hover:text-gray-700 transition-colors" aria-label="LinkedIn" target="_blank" rel="noopener noreferrer"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 448 512" aria-hidden="true"><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z" /></svg></a><a href="https://www.youtube.com/@mergifyio" class="inline-flex items-center justify-center p-2 text-dark hover:text-gray-700 transition-colors" aria-label="YouTube" target="_blank" rel="noopener noreferrer"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 576 512" aria-hidden="true"><path d="M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6C14.9 167 14.9 256.4 14.9 256.4s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zM232.2 337.6V175.2l142.7 81.2-142.7 81.2z" /></svg></a><a href="https://slack.mergify.com/" class="inline-flex items-center justify-center p-2 text-dark hover:text-gray-700 transition-colors" aria-label="Slack" target="_blank" rel="noopener noreferrer"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z" /></svg></a><a href="https://github.com/mergifyio" class="inline-flex items-center justify-center p-2 text-dark hover:text-gray-700 transition-colors" aria-label="GitHub" target="_blank" rel="noopener noreferrer"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" aria-hidden="true"><path d="M10 0c5.523 0 10 4.59 10 10.253 0 4.529-2.862 8.371-6.833 9.728-.507.101-.687-.219-.687-.492 0-.338.012-1.442.012-2.814 0-.956-.32-1.58-.679-1.898 2.227-.254 4.567-1.121 4.567-5.059 0-1.12-.388-2.034-1.03-2.752.104-.259.447-1.302-.098-2.714 0 0-.838-.275-2.747 1.051A9.396 9.396 0 0 0 10 4.958a9.375 9.375 0 0 0-2.503.345C5.586 3.977 4.746 4.252 4.746 4.252c-.543 1.412-.2 2.455-.097 2.714-.639.718-1.03 1.632-1.03 2.752 0 3.928 2.335 4.808 4.556 5.067-.286.256-.545.708-.635 1.371-.57.262-2.018.715-2.91-.852 0 0-.529-.985-1.533-1.057 0 0-.975-.013-.068.623 0 0 .655.315 1.11 1.5 0 0 .587 1.83 3.369 1.21.005.857.014 1.665.014 1.909 0 .271-.184.588-.683.493C2.865 18.627 0 14.783 0 10.253 0 4.59 4.478 0 10 0" /></svg></a></div></div></div><!-- Right: Link grid + Compare block --><div class="flex-1 flex flex-col sm:flex-row gap-y-8 gap-x-10"><div class="grid grid-cols-2 sm:grid-cols-4 gap-y-8 gap-x-8 flex-1"><div class="flex flex-col gap-2"><h3 class="text-lg font-semibold text-dark leading-[26px]">Product</h3><a href="/product/merge-queue" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Merge Queue</a><a href="/product/ci-insights" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">CI Insights</a><a href="/product/test-insights" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Test Insights</a><a href="/product/merge-protections" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Merge Protections</a><a href="/product/stacks" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Stacks</a><a href="/pricing" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Pricing</a></div><div class="flex flex-col gap-2"><h3 class="text-lg font-semibold text-dark leading-[26px]">Company</h3><a href="/about" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">About Us</a><a href="/blog" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Blog</a><a href="/customers" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Customers</a><a href="/careers" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Careers</a></div><div class="flex flex-col gap-2"><h3 class="text-lg font-semibold text-dark leading-[26px]">Developers</h3><a href="https://docs.mergify.com/" target="_blank" rel="noopener noreferrer" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Documentation</a><a href="https://slack.mergify.com/" target="_blank" rel="noopener noreferrer" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Slack Community</a><a href="https://docs.mergify.com/changelog" target="_blank" rel="noopener noreferrer" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Changelog</a><a href="/integrations" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Integrations</a></div><div class="flex flex-col gap-2"><h3 class="text-lg font-semibold text-dark leading-[26px]">Resources</h3><a href="/calculator" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed plausible-event-name=Calculator+Click plausible-event-source=footer">ROI Calculator</a><a href="/learn/merge-queue" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Merge queue guide</a><a href="/learn/flaky-tests" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Flaky tests guide</a><a href="/startups" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Startup Program</a><a href="/brand" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Brand Assets</a><a href="/privacy" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Privacy Policy</a><a href="/tos" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Terms of Service</a><a href="https://trust.mergify.com/" target="_blank" rel="noopener noreferrer" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Security</a><a href="https://status.mergify.com/" target="_blank" rel="noopener noreferrer" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Service Status</a></div></div><div class="flex flex-col gap-2 w-full sm:w-[170px] shrink-0"><h3 class="text-lg font-semibold text-dark leading-[26px]">Compare</h3><div class="flex flex-col gap-1 "><span class="text-xs font-medium uppercase tracking-wider text-gray-600">Compare to</span><a href="/compare/github-merge-queue" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">GitHub Merge Queue</a><a href="/compare/aviator" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Aviator</a><a href="/compare/trunk" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Trunk</a><a href="/compare/datadog-ci-visibility" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Datadog CI Visibility</a></div><div class="flex flex-col gap-1 mt-3"><span class="text-xs font-medium uppercase tracking-wider text-gray-600">Migrate from</span><a href="/migrate/bulldozer" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Bulldozer</a><a href="/migrate/bors" class="text-base font-medium text-dark hover:text-gray-600 focus-visible:text-gray-600 transition-colors leading-relaxed">Bors</a></div><a href="/compare-mergify" class="mt-3 text-sm font-medium text-gray-800 hover:text-dark transition-colors">See all comparisons →</a></div></div></div></div></footer><script type="module">var e=[];function t(){for(let t of e)t.disconnect();e=[];for(let{selector:t,threshold:n}of[{selector:`.animate-on-scroll`,threshold:.1},{selector:`.animate-card-enter`,threshold:.15},{selector:`.animate-word-reveal`,threshold:.3}]){let r=document.querySelectorAll(t);if(!r.length)continue;let i=new IntersectionObserver(e=>{for(let t of e)t.isIntersecting&&(t.target.classList.add(`is-visible`),i.unobserve(t.target))},{threshold:n});for(let e of r)i.observe(e);e.push(i)}}document.addEventListener(`astro:page-load`,t);</script></body></html>