From d0afb63e17eb7760e6721fde54ece85d243e0d36 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Tue, 9 Jun 2020 12:08:36 +0000 Subject: [PATCH] Disable all Travis notifications for forks (hopefully). [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878660 13f79535-47bb-0310-9956-ffa450edef68 --- .travis.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 57f07ac1e23..0dd11aa66eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -278,9 +278,15 @@ before_script: script: - ./test/travis_run_${TRAVIS_OS_NAME}.sh +# Send notifications by default to IRC and dev@, for everything but +# forks, otherwise any build from a fork will spam the list with CI +# results. notifications: - irc: "chat.freenode.net#httpd-dev" - # Disabled to avoid too many failure emails to dev@, - # some builds occasionally fail. + irc: + if: fork = false + channels: + - "chat.freenode.net#httpd-dev" email: - - dev@httpd.apache.org + if: fork = false + recipients: + - dev@httpd.apache.org -- 2.47.3