docbrown/docs/tests/skip-ci.md
Jacob Herrington 2dac64b39d Expand the testing docs (#5112)
* Add context to Acceptance Testing guide

* Add docs on Regression testing

* Expand CI skip docs

* Expand documentation on testing controllers [ci skip]
2019-12-16 15:16:16 -05:00

18 lines
490 B
Markdown

---
title: Skipping CI for minor changes
---
# Skipping Continuous Integration
It's almost always a good idea to let our [Continuous Integration][ci] tools do
their work, but sometimes it can makes sense to skip CI.
In the case of extremely minor changes, like updating the project README or
fixing a typo in the docs, you might want to skip CI by including `[ci skip]` in
your commit message:
```shell
git commit -m "Fixed a typo in the testing docs [ci skip]"
```
[ci]: /deployment/