Deployment Gate - CI/CD Glossary Definition
A deployment gate is a check that must pass before a release proceeds to the next environment. Gates can be automatic (test results, security scans, query-based metrics) or manual (an approval click).
In GitHub Actions
Environment protection rules act as gates: you can require reviewers, a wait timer, or specific branches before a job that targets an environment: runs.
Related guides
Deployment Pipeline - CI/CD Glossary DefinitionDeployment Pipeline: A deployment pipeline is the automated path a build takes from a committed change to run…
Progressive Delivery - CI/CD Glossary DefinitionProgressive Delivery: Progressive delivery is releasing a change to an increasing share of users over time wh…