From 08c896b5c29729058fce8b968af5195156ca56bf Mon Sep 17 00:00:00 2001 From: Eliran Pe'er Date: Sat, 2 Dec 2017 15:01:07 +0200 Subject: [PATCH] Integrate TravisBuddy TravisBuddy will comment on pull requests in your public repository everytime a test failed in one of them. The comment will include only the part of the build log that applies to your testing framework, so your contirbutors won't have to enter Travis's website and search the long and annoying build log for the reason the tests failed. Here's an example: bluzi/express#1 --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2eec67c0..4fe39f5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,3 +7,12 @@ script: - "npm run lint" - "npm run cover" sudo: false +notifications: + webhooks: + urls: + - https://www.travisbuddy.com/ + on_success: never + on_failure: always + on_start: never + on_cancel: never + on_error: never