From 623d4c0076c49b4df827dbc4ef064e9b098bc229 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Sun, 25 Mar 2018 15:14:18 -0400 Subject: [PATCH] Add deploy exception for dependabot branches --- travis/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/deploy.sh b/travis/deploy.sh index d7fbe8b87..39b579099 100644 --- a/travis/deploy.sh +++ b/travis/deploy.sh @@ -3,7 +3,7 @@ set -e # For revert branches, do nothing -if [[ "$TRAVIS_BRANCH" == revert-* ]]; then +if [[ "$TRAVIS_BRANCH" == revert-* ]] || [[ "$TRAVIS_BRANCH" == dependabot/* ]]; then echo -e "\e[36m\e[1mBuild triggered for reversion branch \"${TRAVIS_BRANCH}\" - doing nothing." exit 0 fi