From 7a3d43a12a7f2bbf5b8e4471ebb39180be98d654 Mon Sep 17 00:00:00 2001 From: Amir Zarrinkafsh Date: Sun, 15 Mar 2020 14:48:18 +1100 Subject: [PATCH] [Buildkite] Adjust pipeline for dependabot (#707) Minor tweak to skip the whole deployment pipeline rather than individual steps. --- .buildkite/deployment.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/deployment.sh b/.buildkite/deployment.sh index 25c1e53d0..e07073dce 100755 --- a/.buildkite/deployment.sh +++ b/.buildkite/deployment.sh @@ -20,10 +20,10 @@ steps: - label: ":docker: Image Deployments" command: ".buildkite/steps/deployimages.sh | buildkite-agent pipeline upload" - if: build.branch != "master" && build.branch !~ /^dependabot\/.*/ && build.env("CI_DOCS_BYPASS") != "true" + if: build.branch != "master" && build.env("CI_DOCS_BYPASS") != "true" - wait: - if: build.branch !~ /^dependabot\/.*/ && build.env("CI_DOCS_BYPASS") != "true" + if: build.env("CI_DOCS_BYPASS") != "true" - label: ":docker: Deploy Manifests" command: "authelia-scripts docker push-manifest" @@ -37,7 +37,7 @@ steps: command: "authelia-scripts docker push-manifest" env: DOCKER_CLI_EXPERIMENTAL: "enabled" - if: build.branch != "master" && build.branch !~ /^dependabot\/.*/ && build.env("CI_DOCS_BYPASS") != "true" + if: build.branch != "master" && build.env("CI_DOCS_BYPASS") != "true" - label: ":github: Deploy Artifacts" command: "ghartifacts.sh"