From 6a115cfbe5a750b8a4aecea0467adf258fa25e74 Mon Sep 17 00:00:00 2001 From: Andrew Rynhard Date: Sat, 22 Jul 2017 08:48:15 -0700 Subject: [PATCH] chore(ci): check if not a PR (#27) --- .conform.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.conform.yaml b/.conform.yaml index 133f87c5..6e1ac02c 100644 --- a/.conform.yaml +++ b/.conform.yaml @@ -26,7 +26,8 @@ script: set -e - if [[ ! -z "${TRAVIS_PULL_REQUEST}" ]]; then + # Only run if not a PR. + if [[ "${TRAVIS_PULL_REQUEST}" != "false" ]]; then exit 0 fi