From 03c825d022f7200e9ca1f630789eb1407720d637 Mon Sep 17 00:00:00 2001 From: Jake Bolam Date: Sat, 1 Dec 2018 17:17:17 -0500 Subject: [PATCH] feat: stop builds on gh-pages branch --- website/static/.circleci/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 website/static/.circleci/config.yml diff --git a/website/static/.circleci/config.yml b/website/static/.circleci/config.yml new file mode 100644 index 00000000..14e903bb --- /dev/null +++ b/website/static/.circleci/config.yml @@ -0,0 +1,9 @@ +# This config file will prevent tests from being run on the gh-pages branch. +version: 2.1 +jobs: + build: + machine: true + branches: + ignore: gh-pages + steps: + -run: echo "Skipping tests on gh-pages branch"