How to skip CI in GitHub Actions

ohbus

Subhrodip Mohanta

Posted on March 23, 2021

How to skip CI in GitHub Actions

GitHub Actions now supports skipping workflows

All push and pull_request workflows by looking for some common keywords in your commit message.

If any commit message in your push or the HEAD commit of your PR contains one of the following strings:

  • [skip ci]
  • [ci skip]
  • [no ci]
  • [skip actions]
  • [actions skip]

SKIP CI

Workflows triggered on the push or pull_request events will be skipped.


This feature have been previously supported by all major CI like:

💖 💪 🙅 🚩
ohbus
Subhrodip Mohanta

Posted on March 23, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

How to skip CI in GitHub Actions
devops How to skip CI in GitHub Actions

March 23, 2021