From 42293c58a5ee088e88d51aba32be80f1bf8fa497 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Wed, 19 Sep 2018 14:11:33 -0500 Subject: [PATCH] Do not run prerelease in CI if this is a pull request --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index c5bf059e2..b42b2aa64 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -68,6 +68,7 @@ jobs: docker: - image: circleci/python:2.7-jessie steps: + - run: '[[ -v CIRCLE_PR_NUMBER ]] && circleci step halt || true' # Skip job if this is a PR - *fast-checkout - run: sudo pip install awscli - run: make prerelease-upload