Code Review - CI/CD Glossary Definition
Code review is peer inspection of a proposed change before it merges. It catches defects, spreads context, and enforces standards, and is typically a required status check on a pull request.
Related guides
Pull Request - CI/CD Glossary DefinitionA pull request proposes merging one branch into another, bundling the diff with discussion, reviews, and CI c…
Definition of Done - CI/CD Glossary DefinitionThe definition of done is a shared checklist a work item must satisfy - tests passing, reviewed, deployed - b…
Conventional Commit - CI/CD Glossary DefinitionA conventional commit follows a structured message like feat: or fix:, letting tooling derive changelogs and…