GitHub Actions Workflow Explainer
Paste a workflow file (e.g. .github/workflows/ci.yml) to get a plain-language summary. Parsing happens entirely in your browser — the workflow is only read as text and is never executed or uploaded.
Workflow YAML
Summary
Name: CI
Triggers: push, pull_request
Top-level permissions: contents: read
Job: build (build, runs on ubuntu-latest)
| Step | Action |
|---|---|
| actions/checkout@v4 | ref: v4 |
| run step | run command |
| run step | run command |