AI Weekly Malaysia

Back to items Summaries

GitHub Models is now retired

ID
12592
Status
summarized
Published
10 Aug 2026, 6:48 AM
Fetched
10 Aug 2026, 7:58 AM
Provider
Simon Willison
Category
developer-ai
Original URL
https://simonwillison.net/2026/Aug/9/github-models-is-now-retired/
Source URL
https://simonwillison.net/atom/everything/

Summary

Score
7.0
Created
10 Aug 2026, 7:58 AM
Tags
Audience
developersvibe_codersai_agent_users

What happened

GitHub Models has been fully retired, breaking any GitHub Actions workflows that relied on its unified LLM API and the ambient GitHub API key for prompt execution. Simon Willison discovered this via a failed Actions run and migrated his README folder-summary workflow to an OpenAI API key with a monthly spending limit, using GPT-5.6 Luna.

Why it matters

If you have GitHub Actions workflows calling GitHub Models for LLM prompts, they are already broken—audit your repos and swap in a direct provider API key with spending caps. Willison's guess that coding-agent usage made subsidized tokens prohibitively expensive is a signal that other free-tier LLM gateways tied to CI/CD may follow.

Discussion angle

Which other free or subsidized LLM-in-CI offerings are still safe to build on, and what's the cheapest fallback pattern for agent workflows that need an API key in GitHub Actions without racking up unbounded spend?

Top