Feature Branch Workflow - CI/CD Glossary Definition
A feature branch workflow is a branching model where each unit of work is developed on its own branch off the main line and merged back via a pull request after review and checks pass.
In CI/CD
CI runs the full pipeline on the feature branch and its pull request, so the merge to main only happens once the change is proven green, keeping the main branch releasable.
Related guides
Gitflow - CI/CD Glossary DefinitionGitflow: Gitflow is a branching model, introduced by Vincent Driessen, that uses long-lived `main` and `devel…
GitHub Flow - CI/CD Glossary DefinitionGitHub Flow: GitHub flow is a lightweight branching model: branch off `main`, open a pull request, get review…
Release Engineering - CI/CD Glossary DefinitionRelease Engineering: Release engineering is the discipline of making the build, packaging, and release of sof…