From 8ed3e7991d1062f2f2ed7919121d23f05346bf14 Mon Sep 17 00:00:00 2001 From: Daniel Holbach Date: Tue, 30 Jun 2020 11:28:14 +0200 Subject: [PATCH] Don't run Circle CI on gh-pages branch Follow the lead of https://github.com/weaveworks/flagger/blob/gh-pages/.circleci/config.yml --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..fb3e8fd --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,16 @@ +version: 2.1 +jobs: + build: + machine: true + steps: + - run: "echo skip" + +workflows: + version: 2 + ignore: + jobs: + - build: + filters: + branches: + ignore: + - gh-pages