Feature Branch Workflow - Definição do Glossário CI/CD
Um feature branch workflow é um modelo de branching em que cada unidade de trabalho é desenvolvida em sua própria branch a partir da linha principal e integrada de volta por meio de um pull request depois que a revisão e as verificações passam.
No CI/CD
O CI roda o pipeline completo na feature branch e em seu pull request, de modo que o merge na main só acontece depois que a alteração é comprovadamente verde, mantendo a branch principal pronta para release.
Guias relacionados
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…