Skip to content

TechChannels Network:      Whitepaper Library      Webinars         Virtual Events      Research & Reports

×
DevOps

GitHub’s August 17 Outage Shows How AI Is Expanding the Software Failure Surface

A widespread GitHub outage in mid-August disrupted APIs, repository downloads, GitHub Actions, webhooks, Pages, and Copilot. The problems began at around 9:40 a.m. EDT, with error rates eventually reaching roughly 20% for web and API traffic and close to 50% for some archive and raw repository downloads (DevOps.com, 2026).

For many development teams, such outages mean far more than being unable to open GitHub.com. Source code may still exist safely on local machines, but the machinery around it starts disappearing. Pull requests stall, CI jobs stop launching, deployment hooks fail, and AI coding tools lose access to the context they depend on.

The company has not yet published the root cause, so blaming the outage directly on AI would be premature. But GitHub itself has been unusually open about the wider capacity problem.

In April, CTO Vlad Fedorov said GitHub had originally planned for 10 times its existing capacity, then revised that target to 30 times by February as agentic development accelerated. Repository creation, pull requests, API calls, automation, and large-repository workloads were all climbing much faster than expected. (GitHub, 2026)

AI coding is creating an odd infrastructure problem.

A developer can ask an agent to do one thing, but the resulting work can fan out across Git storage, APIs, Actions, search, permission checks, webhooks, and databases. Queues grow, retries create more traffic, and one slow dependency begins dragging unrelated services behind it.

In July, GitHub recorded 8 separate degradation incidents. On July 9, trouble in a backend service responsible for provisioning platform-hosted runners delayed or prevented Actions jobs from starting. Because other products depended on Actions, some Pages builds, Copilot Cloud Agent jobs and Copilot Code Review jobs failed or waited too. (GitHub, 2026).

That dependency chain is easy to miss when everything is working. Copilot may look like a separate AI product in the interface, but parts of it still depend on the same automation infrastructure running everybody else’s builds.

GitHub is still patching the infrastructure behind these outages. The service responsible for a recent Actions incident was still running in GitHub’s own data centers, where tight capacity constraints helped trigger the issue. To fix it, the team is rushing its cloud migration over to Azure to buy more headroom and stop failures from cascading across dependencies.

A conventional coding platform mainly had to keep its own repositories, databases, and CI systems healthy. An AI agent may depend on external model providers, search systems, MCP servers and third-party APIs while it works.

The dependency map grows as developers interact with it less directly. GitHub is trying to reduce that fragility. By late July, more than half of its monolith read traffic ran through Azure Central US; Git traffic had reached 47%, and the company is working toward enough independent cloud capacity to withstand losing an entire region.

GitHub now sits underneath an extraordinary amount of everyday software work for more than 180 million developers. (GitHub Octoverse, 2025). It has become the place where code is stored, tested, reviewed, shipped, and increasingly written by AI.

Concentrating that much work on one platform speeds up production, but when a single outage hits, global engineering stalls with it.

Share on

More News