Introducing Tenki's code reviewer: deep, context-aware reviews that actually find bugs.Try it for Free
AI Agents
Jun 2026

Copilot Token Billing Is Coming: What Enterprise Teams Need Now

Hayssem Vazquez-Elsayed
Hayssem Vazquez-Elsayedproduct

Share Article:

On April 20, GitHub paused all new individual Copilot sign-ups across Pro, Pro+, and Student plans. A week later, the company confirmed what leaked documents had already revealed: starting June 1, 2026, Copilot is moving from request-based billing to usage-based billing tied to actual token consumption.

If your org is running Copilot Business or Enterprise, this isn't a distant policy tweak. It's a billing model change that takes effect in under a month, and most teams haven't modeled what it'll cost.

Why the Sign-Up Freeze Happened

GitHub VP of product development Joe Binder was direct about the reason: "Agentic workflows have fundamentally changed Copilot's compute demands. Long-running, parallelized sessions now regularly consume far more resources than the original plan structure was built to support."

This isn't the old Copilot that suggested a few lines of code in your editor. Today's Copilot runs Copilot CLI sessions in the terminal, dispatches background tasks via Copilot Cloud Agent, and performs multi-file agentic edits that can run for 10-15 minutes autonomously. Each of those sessions consumes orders of magnitude more tokens than an inline completion.

According to internal documents obtained by Ed Zitron, GitHub's weekly Copilot compute costs doubled since the start of 2026. The sign-up freeze and tighter rate limits were stopgap measures while the billing infrastructure caught up.

How Token-Based Billing Actually Works

The old model was simple: each interaction with Copilot counted as one "request," regardless of whether you asked it to rename a variable or refactor an entire module. Expensive models used a multiplier (e.g., Opus at 27x), but the abstraction was still a fixed unit.

The new system, which GitHub calls GitHub AI Credits, charges based on actual token consumption priced at each model's API rate. Input tokens (your prompt, attached files, MCP tool context), output tokens (the model's response, tool calls, chain-of-thought reasoning), and the model you choose all factor into the cost.

Here's the enterprise pricing as confirmed by GitHub:

  • Copilot Business: $19/user/month. Includes $30 in pooled AI credits during the June-August promotional period, dropping to $19 in credits afterward.
  • Copilot Enterprise: $39/user/month. Includes $70 in pooled AI credits during the promo, dropping to $39 afterward.
  • Code completions and Next Edit Suggestions remain unlimited and don't consume credits.
  • Credits are pooled across the organization. Power users draw more, lighter users offset the balance.
  • Unused credits don't roll over. They reset each billing cycle.

The promotional pricing softens the landing. But after August, a 50-seat Copilot Business deployment goes from $950/month flat to $950/month plus whatever token consumption exceeds the $950 credit pool. That gap is where the budget surprises live.

Why Agentic Workflows Blow Up Token Budgets

Under the old request model, a developer could trigger Copilot's agent mode to plan and implement a feature across multiple files, and it counted as one request. Under token billing, that same session bills every token: the full codebase context fed into the model, every intermediate tool call, every chain-of-thought step, and the final output.

Community members in the GitHub discussion thread have already shared real numbers. One developer reported that a single agentic plan-and-implement session using Claude Opus through Claude Code cost about $35 in API tokens. Another estimated that using GPT 5.3-Codex for a 10-15 minute autonomous coding task would burn $10-15 in tokens. That's a single prompt consuming an entire month's credit allotment on a $10 Pro plan.

For enterprise, scale that across a team. If 20 out of 50 developers on your Business plan regularly use agent mode with Opus 4.7 or GPT-5.5, a few heavy sessions per week could easily push your org past the pooled credit ceiling.

There's a compounding factor too: Copilot code review now runs on an agentic architecture backed by GitHub Actions. Starting June 1, reviewing a PR with Copilot will consume both AI credits (for the model inference) and Actions minutes (for the runner). Your monthly bill now has two variable cost lines where you previously had zero.

The Promotional Cliff After August

Pay close attention to the promo timeline. During June through August, Copilot Business customers get $30 in credits for their $19 subscription. That's a 58% markup in value, clearly designed to make the transition feel painless.

After September, you get $19 in credits for $19. Enterprise gets $39 for $39. If your team's consumption ran comfortably within the promotional ceiling, September is when the overage charges start. Teams that calibrate their usage expectations during the promo period will miscalculate their fall budgets.

GitHub says they're rolling out a "preview bill" experience that will show users how their past usage would map to the new billing model. That tool should be the first thing every engineering manager checks when it lands.

What Enterprise Teams Should Do Before June 1

1. Audit your current usage patterns

Segment your team by how they actually use Copilot. Some developers live in inline completions (which stay free). Others are heavy agent mode users who run multi-step tasks through Copilot CLI or Cloud Agent. You need to know the ratio. The inline-only users won't move the needle. The agent-heavy developers will drive your entire bill.

2. Set overage budgets immediately

GitHub's new billing includes a configurable overage budget. If your pooled credits run out mid-month without a budget set, users lose access to chat, agent mode, and code review (completions continue working). If you've set a budget, usage continues up to that cap. Pick a number you can defend to finance, set it, and monitor weekly.

3. Model your token consumption per workflow type

Not all Copilot features consume tokens equally. A rough hierarchy based on community reports and API pricing:

  • Inline completions: Free. No change.
  • Single-turn chat with Sonnet 4.6: Low cost, typically under $0.50 per session.
  • Multi-turn agent mode with Sonnet: $2-8 per session depending on context size.
  • Agent mode with Opus 4.7 or GPT-5.5: $10-40+ per session. This is where budgets break.
  • Background Cloud Agent tasks: Variable, plus they consume Actions minutes on top of AI credits.

4. Establish model selection guidelines

Under token billing, model choice is a cost decision, not just a quality preference. Opus 4.7 costs roughly 5x more per token than Sonnet 4.6. If your team defaults to Opus for every interaction, your credit pool drains fast. Set guidelines: Sonnet for routine work, Opus or GPT-5.5 for architecture decisions and complex debugging.

5. Diversify your AI coding toolchain

Vendor lock-in to a single AI coding tool is now a budget risk. Teams that already use Claude Code, Cursor, or Windsurf alongside Copilot can shift heavy agentic workloads to whichever provider offers better unit economics for a given task. The Copilot community discussion is full of developers already making this switch.

Keep Copilot for inline completions (still unlimited and well-integrated into VS Code) and use direct API access or BYOK configurations for the heavy agentic work where you want finer cost control.

The Actions Minutes Wrinkle

One detail that hasn't gotten enough attention: Copilot code review, which moved to an agentic architecture in March, will start consuming GitHub Actions minutes on June 1. That means your AI-powered PR reviews now draw from two separate budgets: AI credits for inference and Actions minutes for the runner.

For teams that review 50+ PRs a day, those Actions minutes add up. If you're already close to your included Actions minutes ceiling, this could push you into overage territory on Actions too.

Teams looking to manage Actions runner costs have alternatives. Tenki's runners, for example, plug into your existing GitHub Actions setup at $0.015/min/core, which can cut runner costs significantly compared to GitHub-hosted runners. Separating your AI inference costs from your runner costs makes it easier to track and control each line item independently.

An Industry-Wide Shift, Not Just a GitHub Problem

GitHub isn't doing this in isolation. Anthropic recently restricted how third-party tools use Claude subscriptions, pushing those workloads to per-token API billing. Trae (ByteDance's coding tool) switched from a 600-request monthly plan to token billing. As one commenter in the GitHub discussion put it: "I think Copilot moving towards a PAYG plan is probably the beginning of an industry-wide movement over the next year or two."

The economics are straightforward: flat-rate subscriptions were subsidized, and agentic workloads made the subsidy unsustainable. Neither OpenAI nor Anthropic is profitable at current API prices, let alone at subscription prices that offer dramatically cheaper per-token rates. The days of unlimited AI coding for $10-39/month are ending across the board.

For enterprise budget planning, that means treating every AI coding tool as a variable cost center, not a fixed per-seat subscription. Build the dashboards now. Set the overage limits. And don't let the promotional pricing in June lull you into thinking the September bill will look the same.

Tags

#github-copilot-billing#token-based-pricing#enterprise-ai-costs#agentic-ai#copilot-cloud-agent

Recommended for you

What's next in your stack.

GET TENKI

Smarter reviews. Faster builds. Start for Free in less than 2 min.