Back to browse
Paste your YAML to calculate and optimize GitHub Actions costs

Paste your YAML to calculate and optimize GitHub Actions costs

by shubhamoriginx·Mar 18, 2026·2 points·0 comments

AI Analysis

MidSolve My Problem

GitHub Actions cost calculator when GitHub's pricing is already public.

Strengths
  • Compares Ubuntu, Windows, and macOS runner costs side-by-side
  • Processes YAML client-side with no server storage or signup
  • Provides specific optimization suggestions with code examples
Weaknesses
  • GitHub's pricing is public making the calculation straightforward
  • AI optimization suggestions likely basic pattern matching
Target Audience

DevOps engineers managing CI/CD budgets

Similar To

GitHub's pricing calculator · Vercel Cost Calculator · CloudZero

Post Description

Hi HN,

Estimating GitHub Actions costs before the end-of-month bill hits is surprisingly difficult, especially when you are mixing Ubuntu, macOS, and Windows runners or debating self-hosted setups.

I built a simple, no-signup visual calculator to fix this. You just paste your workflow .yml file. It parses the jobs, compares the per-minute pricing across different runner environments, and gives you a clear cost estimate.

I also integrated an analyzer that reviews your workflow steps to suggest actionable optimizations (like implementing aggressive caching, fixing missing timeouts, or swapping runner types). In my testing, these tweaks can realistically cut execution time and costs by 40% to 60%.

It's built entirely with vanilla HTML/CSS/JS, so it loads instantly. Privacy note: Everything is processed on the fly. Your YAML files and architectures are never saved on any database or server.

try here - https://githubactionscost.online/

It's completely free. Would love to hear your feedback, edge cases I might have missed, or any feature requests!

Similar Projects