Read more

GitLab: Push without triggering CI Pipeline

Florian Heinle
December 12, 2023Software engineer at makandra GmbH

Short hint: If you want to push to a git repository that has CI configured, you can skip the CI pipeline for commits that don't need a CI run:

$ git push -o ci.skip
Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

This has a few cavates:

Skips only branch pipelines and not merge request pipelines.
This does not skip pipelines for CI/CD integrations, such as Jenkins.

Posted by Florian Heinle to makandra Operations (2023-12-12 10:06)