Closed
Description
When we are pushing commits, travis will repeat its dance for every single one, even when there is nothing to test, such as docs. etc.
There are two possibilities to manage this:
ci skip
Commits that have [ci skip] anywhere in the commit messages will be ignored. [ci skip] does not have to appear on the first line, so it is possible to use it without polluting your project's history.
- blacklist some branches
We could imagine to have things like:
branches:
except:
- /^doc.*$/
and using always docIssueNumber
for a branch which is about doc and other type of conventions.