You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2020/06/09 12:08:36 UTC

svn commit: r1878660 - /httpd/httpd/trunk/.travis.yml

Author: jorton
Date: Tue Jun  9 12:08:36 2020
New Revision: 1878660

URL: http://svn.apache.org/viewvc?rev=1878660&view=rev
Log:
Disable all Travis notifications for forks (hopefully). [skip ci]

Modified:
    httpd/httpd/trunk/.travis.yml

Modified: httpd/httpd/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/.travis.yml?rev=1878660&r1=1878659&r2=1878660&view=diff
==============================================================================
--- httpd/httpd/trunk/.travis.yml (original)
+++ httpd/httpd/trunk/.travis.yml Tue Jun  9 12:08:36 2020
@@ -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