From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHadv-0008PE-85 for qemu-devel@nongnu.org; Mon, 27 Jun 2016 13:48:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHadq-0007MJ-Vr for qemu-devel@nongnu.org; Mon, 27 Jun 2016 13:48:18 -0400 Received: from mail-qk0-x243.google.com ([2607:f8b0:400d:c09::243]:33581) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHadq-0007MD-Px for qemu-devel@nongnu.org; Mon, 27 Jun 2016 13:48:14 -0400 Received: by mail-qk0-x243.google.com with SMTP id n132so2422120qka.0 for ; Mon, 27 Jun 2016 10:48:14 -0700 (PDT) From: Pranith Kumar Date: Mon, 27 Jun 2016 13:48:12 -0400 Message-Id: <20160627174812.29150-1-bobby.prani@gmail.com> Subject: [Qemu-devel] [PATCH] .travis.yml: Disable IRC build status updates from forks List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?q?Alex=20Benn=C3=A9e?= , "open list:-----------------..." Cc: serge.fdrv@gmail.com, peter.maydell@linaro.org We want the travis build bot to post notifications on IRC only for the master qemu repository and not the various forks/branches of others. Currently there is no direct option to restrict the updates to one repository. This is being worked upon by the developers and tracked in https://github.com/travis-ci/travis-ci/issues/1094. Until such time, we can use the workaround as posted in ref. https://github.com/facebook/flow/pull/1822. This basically creates an ecrypted string which decrypts to qemu IRC channel only on "qemu/qemu" repo and not on the forks. This enables the build bot to notify the IRC only for the main repo. Signed-off-by: Pranith Kumar CC: serge.fdrv@gmail.com CC: peter.maydell@linaro.org --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c13881e..b6b1daf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ addons: notifications: irc: channels: - - "irc.oftc.net#qemu" + - secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1KWKjZe9KDTZWppWRYVwAwQMzVeSOsbbU4tRoJ6Pp+3qhH1Z0eGYR9ZgKYAoTumDFgSAYRp4IscKS8jkoedOqM=" on_success: change on_failure: always env: -- 2.9.0