github-actions
Installation
SKILL.md
GitHub Actions
Build CI/CD pipelines that run on every push, PR, schedule, or manual trigger directly in GitHub.
Workflow Structure
Workflows live in .github/workflows/. Each YAML file is an independent pipeline.
# .github/workflows/ci.yml
name: CI # Display name in GitHub UI
on: # Triggers
push:
branches: [main]
pull_request:
branches: [main]
Related skills