On 01/05/2015 03:20 PM, Daniel-Constantin Mierla wrote:
Hello,
is there any doc presenting when Travis CI (from github) is doing the
notifications? Or, maybe someone familiar with the system can provide
more details.
http://docs.travis-ci.com/user/build-configuration/#Specify-branches-to-bui…
I see it is sent for pull requests and commits to new
branches. Maybe we
can limit to get those notifications only for the official branches,
either from some config or a filter on our email server, otherwise it
may create a lot of noise.
I would keep the pull-request build. That's useful, from my POW.
I can add this to the .travis.yml. In order to build only those branches:
# whitelist
branches:
only:
- master
- 4.2
In order to reduce the spam I will set the email notification to this:
on_success: never
on_failure: always
Do you agree?
Victor