From 843364f9905460a4d107e1b26ff6d10b405204d2 Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Fri, 8 Nov 2019 12:55:56 -0500 Subject: [PATCH] ignore all workflows except website for stable-website (#6747) --- .circleci/config.yml | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 41dabb1a53..5af19b0c0a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -524,7 +524,11 @@ workflows: version: 2 go-tests: jobs: - - check-vendor + - check-vendor: + filters: + branches: + ignore: + - stable-website - lint-consul-retry - go-fmt-and-vet: requires: @@ -538,7 +542,11 @@ workflows: - go-test-api: *go-test build-distros: jobs: - - check-vendor + - check-vendor: + filters: + branches: + ignore: + - stable-website - build-386: &require-check-vendor requires: - check-vendor @@ -546,7 +554,11 @@ workflows: - build-arm: *require-check-vendor test-integrations: jobs: - - dev-build + - dev-build: + filters: + branches: + ignore: + - stable-website - dev-upload-s3: &dev-upload requires: - dev-build @@ -594,7 +606,11 @@ workflows: only: stable-website frontend: jobs: - - frontend-cache + - frontend-cache: + filters: + branches: + ignore: + - stable-website - ember-build: requires: - frontend-cache