Team CI/CD Playbook
Branches map to environments We keep the pipeline simple: develop deploys automatically to the integration environment. master is paired with semantic version tags for production releases. The split keeps day-to-day iteration fast while giving releases a single, traceable entry point. Rhythm of a feature release Branch off develop using a date + feature slug like feat/20251010-user-login. Commit locally in small, focused steps. Push and open a PR back to develop. The moment the PR appears, CI takes over. CI tasks cover the basics: ...