From commits-return-220-archive-asf-public=cust-asf.ponee.io@zipkin.apache.org Thu Jan 31 10:26:51 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 74B1718076D for ; Thu, 31 Jan 2019 11:26:50 +0100 (CET) Received: (qmail 15713 invoked by uid 500); 31 Jan 2019 10:26:41 -0000 Mailing-List: contact commits-help@zipkin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zipkin.apache.org Delivered-To: mailing list commits@zipkin.apache.org Received: (qmail 15595 invoked by uid 99); 31 Jan 2019 10:26:41 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Jan 2019 10:26:41 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 7553885790; Thu, 31 Jan 2019 10:26:40 +0000 (UTC) Date: Thu, 31 Jan 2019 10:27:17 +0000 To: "commits@zipkin.apache.org" Subject: [incubator-zipkin-brave-karaf] 38/43: [circleci] Update publish fork check to `apache` MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: abesto@apache.org In-Reply-To: <154893039963.1974.10943537260093250828@gitbox.apache.org> References: <154893039963.1974.10943537260093250828@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-zipkin-brave-karaf X-Git-Refname: refs/heads/jenkinsfile-tweaks X-Git-Reftype: branch X-Git-Rev: 0cd1637c5a72826686ae7741e017053d5bd3c46b X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190131102640.7553885790@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. abesto pushed a commit to branch jenkinsfile-tweaks in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-brave-karaf.git commit 0cd1637c5a72826686ae7741e017053d5bd3c46b Author: Zoltán Nagy AuthorDate: Wed Jan 30 14:35:54 2019 +0000 [circleci] Update publish fork check to `apache` Before publishing a snapshot or release, we make double sure that we're on the right fork (ie. the official one). With the move to `apache`, this check needs an update. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 91ed2c0..a7b9525 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -59,7 +59,7 @@ jobs: name: Publish snapshot command: | # Guard against running this on pull requests or forks - [ "$CIRCLE_PROJECT_USERNAME" == "openzipkin" ] || exit 0 + [ "$CIRCLE_PROJECT_USERNAME" == "apache" ] || exit 0 [ -z "$CIRCLE_PR_NUMBER" ] || exit 0 ./build-support/publish-snapshot.sh @@ -76,7 +76,7 @@ jobs: no_output_timeout: 30m command: | # Guard against running this on pull requests or forks - [ "$CIRCLE_PROJECT_USERNAME" == "openzipkin" ] || exit 0 + [ "$CIRCLE_PROJECT_USERNAME" == "apache" ] || exit 0 [ -z "$CIRCLE_PR_NUMBER" ] || exit 0 ./build-support/publish-stable.sh