Download Markdown
Best for copying commands, snippets, and config into notes, prompts, or docs
Download MarkdownTools
Print-ready cheat sheet for GitHub Actions, organized for fast lookup, study, and desk-side use
Sample
# .github/workflows/ci.yml
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "Hello from CI"
Workflow | YAML file in `.github/workflows/` that defines automation |
Event | Trigger that starts a workflow (push, PR, schedule, etc.) |
Job | Set of steps that run on the same runner |
Step | Individual task — runs a command or uses an action |
Runner | VM that executes jobs (`ubuntu-latest`, `macos-latest`, `windows-latest`) |
Action | Reusable unit of code referenced with `uses:` |
Download the full cheat sheet for all sections, formatted for print
Download PDFDownloads
Recommended
B&W, ink-efficient. The default for laser printers and photocopies
Best for Printouts and desk-side reference
Warm color accents for on-screen reading or color printers
Best for Screen reading or color printers
Maximum density, 4-column layout. Everything on one page
Best for Fast scanning and minimum paper use
Text formats
Download Markdown
Best for copying commands, snippets, and config into notes, prompts, or docs
Download MarkdownPreview
The web preview is for quick browsing. The PDF remains the authoritative print artifact
Open in Browser