Skip GitLab Pipeline with Commit Message
Feb 18, 2025
Developers can manually skip the pipeline jobs by inserting a specific flag in their commit message.
Simply add the [skip ci]
or [ci skip]
flags to the commit message. This prevents GitLab from initiating a pipeline.
git commit -m "Fixing Bug [skip ci]"
git push origin feature-branch