Last Updated: February 25, 2016
·
1.707K
· pgilad

Stopping Travis CI email notifications on success

Use the following .travis.yml file:

language: node_js
node_js:
  - '0.10'
notifications:
  email:
    on_success: never
    on_failure: always

And no more success build emails. You will still get emails for broken builds, and that's great!