From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHaqK-00018P-A8 for qemu-devel@nongnu.org; Mon, 27 Jun 2016 14:01:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHaqI-0001gq-29 for qemu-devel@nongnu.org; Mon, 27 Jun 2016 14:01:07 -0400 Received: from mail-vk0-x235.google.com ([2607:f8b0:400c:c05::235]:36312) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHaqH-0001gX-DX for qemu-devel@nongnu.org; Mon, 27 Jun 2016 14:01:05 -0400 Received: by mail-vk0-x235.google.com with SMTP id u64so242451045vkf.3 for ; Mon, 27 Jun 2016 11:01:05 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20160627174812.29150-1-bobby.prani@gmail.com> References: <20160627174812.29150-1-bobby.prani@gmail.com> From: Peter Maydell Date: Mon, 27 Jun 2016 19:00:45 +0100 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [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: Pranith Kumar Cc: =?UTF-8?B?QWxleCBCZW5uw6ll?= , "open list:-----------------..." , Sergey Fedorov On 27 June 2016 at 18:48, Pranith Kumar wrote: > 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: Can we have a comment that says what this magic string is, how it was created and what it is controlling, please? thanks -- PMM