In hybrid CI/CD approaches, when code is committed, the pipeline starts by building and testing the code. After successful tests, the pipeline decides whether to deploy automatically or wait for manual approval based on a parameter called AUTO_DEPLOY. If AUTO_DEPLOY is true, deployment happens immediately. If false, the pipeline pauses and waits for a human to approve before deploying. This method combines fast automation with safety checks. The Jenkins pipeline example shows these steps clearly, with outputs indicating each stage's progress. Variables like AUTO_DEPLOY control the flow, and the pipeline ends after deployment completes either way.