continue-on-error - CI/CD Glossary Definition
continue-on-error allows a step or job to fail without failing the whole workflow.
continue-on-error is a key that lets a job or step fail without failing the overall workflow, so later steps still run and the run can be marked successful.
It is useful for advisory checks (linters, optional uploads) whose failure should not block a merge; the step still records as failed but does not stop the run.
Related guides
timeout-minutes - CI/CD Glossary Definitiontimeout-minutes: timeout-minutes is a GitHub Actions key that sets the maximum minutes a job or step may run…
Graceful Degradation - CI/CD Glossary DefinitionGraceful Degradation: Graceful degradation is designing a system to keep serving reduced functionality when a…