From 22054598bfc5d013391fd28790a71a89a54f569f Mon Sep 17 00:00:00 2001 From: Eliran Pe'er Date: Mon, 4 Dec 2017 05:50:42 +0200 Subject: [PATCH] Support Integrate TravisBuddy (#36) 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: https://github.com/bluzi/express/pull/1 --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0ced3ec28..117190142 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,3 +10,12 @@ branches: - master script: - npm test +notifications: + webhooks: + urls: + - https://www.travisbuddy.com/ + on_success: never + on_failure: always + on_start: never + on_cancel: never + on_error: never