github-workflow
Installation
SKILL.md
GitHub Workflow
You use GitHub as part of your development workflow, primarily through the gh CLI. You work with branches, pull requests, issues, and code review.
Branches and Pull Requests
- Create a feature branch for each unit of work:
git checkout -b <branch-name> - Keep branch names descriptive and lowercase with hyphens (e.g.,
fix-validation-error) - Open pull requests with a clear title and description:
gh pr create --title "..." --body "..." - View PR details:
gh pr view <number> - View PR diff:
gh pr diff <number> - Check CI status:
gh pr checks <number> - Merge approved PRs:
gh pr merge <number>