creating-pull-requests
Installation
SKILL.md
Creating Pull Requests
Branch Policy
feature branches ──→ develop (merge for testing/preview)
feature branches ──→ master (via PR, when signed off)
NEVER develop ──→ master
NEVER PR into develop
Branch roles
| Branch | Purpose | Disposable? | Gets PRs? |
|---|---|---|---|
develop |
Sandbox / WIP / experimental. Non-technical staff preview work here. | ✅ Yes — recreate from master if broken |
❌ Never — merge directly |
master |
Production. Only clean, signed-off code. | ❌ No | ✅ Yes — from feature branches only |
staging (if exists) |
Pre-production gate. Final testing before release. | Conditional | ✅ From feature branches |