diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-04-20 00:01:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 09:01:53 +0200 |
commit | fb02b569578e4538852cb92b350036548aa5da15 (patch) | |
tree | cd8333228522679f1ad1e6e270619c6eecabb930 /doc/contributing.rst | |
parent | 6852d091b33757ab34d1f0c4f9b22d10dbe48049 (diff) | |
download | Nim-fb02b569578e4538852cb92b350036548aa5da15.tar.gz |
support skip ci in azure pipelines, and support it properly in github actions pipelines (#17561)
* support skip ci in azure pipelines * [skip ci] example of a commit that skips CI * example of a commit that does not skip CI * fix github actions logic for ci skip handling * [skip ci] example of a commit that skips CI for all pipelines * example of a commit that does not skip CI for any pipeline
Diffstat (limited to 'doc/contributing.rst')
-rw-r--r-- | doc/contributing.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst index 7ee3aa444..3d3da2ce0 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -508,9 +508,10 @@ Continuous Integration (CI) 1. Continuous Integration is by default run on every push in a PR; this clogs the CI pipeline and affects other PR's; if you don't need it (e.g. for WIP or - documentation only changes), add `[ci skip]` to your commit message title. - This convention is supported by `Appveyor - <https://www.appveyor.com/docs/how-to/filtering-commits/#skip-directive-in-commit-message>`_ + documentation only changes), add `[skip ci]` to your commit message title. + This convention is supported by our github actions pipelines and our azure pipeline + as well as our former other pipelines: + `Appveyor <https://www.appveyor.com/docs/how-to/filtering-commits/#skip-directive-in-commit-message>`_ and `Travis <https://docs.travis-ci.com/user/customizing-the-build/#skipping-a-build>`_. 2. Consider enabling CI (azure, GitHub actions and builds.sr.ht) in your own Nim fork, and |