From 4006422ef5001667c1b1c5f84984935ca37b453a Mon Sep 17 00:00:00 2001 From: picklesrus <picklesrus@users.noreply.github.com> Date: Thu, 27 Aug 2020 12:35:31 -0400 Subject: [PATCH] Stop gh-pages deploy from happening on pull requests. I found this strategy suggested in https://discuss.circleci.com/t/create-separate-steps-jobs-for-pr-forks-versus-branches/13419 --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f8462aed..4e82a0d88 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -206,5 +206,6 @@ workflows: - build filters: branches: + only: /^(?!pull\/).*$/ # don't deploy to gh pages on PRs. ignore: - ^dependabot/.*/ -- GitLab