DEV Community

Cover image for How to skip CI in GitHub Actions
Subhrodip Mohanta
Subhrodip Mohanta

Posted on

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:

Top comments (0)