From fdbd8aab70f2ce9e4e9fb7224b4651f117bca0af Mon Sep 17 00:00:00 2001 From: Mitchell Nielsen Date: Fri, 15 May 2020 19:27:25 -0400 Subject: [PATCH] Skip specs_without_cluster jobs for documentation branches --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3100136db0..2287937e6d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -885,6 +885,9 @@ specs_without_cluster: variables: RSPEC_TAGS: ~type:feature needs: [] + except: + refs: + - /(^docs[\/-].+|.+-docs$)/ .production_specs: extends: .specs @@ -899,6 +902,9 @@ production_specs_without_cluster: extends: .production_specs variables: RSPEC_TAGS: ~type:feature + except: + refs: + - /(^docs[\/-].+|.+-docs$)/ production_specs_gke: extends: .production_specs -- GitLab