actions-ci-tuning
Installation
SKILL.md
GitHub Actions CI Tuning
Audit and improve GitHub Actions workflows. Focus on correctness first (jobs that error rather than fail), then speed (cache, parallelism), then reliability (flakiness, artifact guards).
Workflow
- Inventory — list all
.github/workflows/*.ymlfiles and their trigger events, jobs, and rough durations (gh run list --workflow <file> --limit 5). - Audit against checklist — run through each section below and flag every gap.
- Prioritise — group findings by impact: correctness bugs > cache misses > parallelism gains > cosmetic.
- Propose changes — draft minimal diffs; do not refactor unrelated parts.
- Verify — after applying, confirm via
gh run listthat the next run is green and faster.