From 5d272b59acd01980a1ba3c01b1e0287817204bda Mon Sep 17 00:00:00 2001 From: Rene Groeschke Date: Thu, 28 Aug 2025 21:33:14 +0200 Subject: [PATCH] Run snyk check in periodic build for each development branch (#133751) we filter by regex for common name pattern of the dev branches to reduce risk of running from development branch. in reality those periodic builds are not likely to be triggered by developers so this is a good enough compromise. Branches that are not developed anymore will stay in snyk for now and require manual removal. --- .buildkite/pipelines/periodic.template.yml | 2 +- .buildkite/pipelines/periodic.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipelines/periodic.template.yml b/.buildkite/pipelines/periodic.template.yml index 4ba5d83f31b8a..a9e0bbd9291d6 100644 --- a/.buildkite/pipelines/periodic.template.yml +++ b/.buildkite/pipelines/periodic.template.yml @@ -232,7 +232,7 @@ steps: image: family/elasticsearch-ubuntu-2404 machineType: n2-standard-8 buildDirectory: /dev/shm/bk - if: build.branch == "main" || build.branch == "9.1" || build.branch == "9.0" || build.branch == "8.19" || build.branch == "8.18" || build.branch == "7.17" + if: build.branch =~ /^(main|\d+\.\d+|\d+\.x)$/ - label: check-branch-consistency command: .ci/scripts/run-gradle.sh branchConsistency timeout_in_minutes: 15 diff --git a/.buildkite/pipelines/periodic.yml b/.buildkite/pipelines/periodic.yml index 8e828c048aa48..f293097a1f8d8 100644 --- a/.buildkite/pipelines/periodic.yml +++ b/.buildkite/pipelines/periodic.yml @@ -613,7 +613,7 @@ steps: image: family/elasticsearch-ubuntu-2404 machineType: n2-standard-8 buildDirectory: /dev/shm/bk - if: build.branch == "main" || build.branch == "9.1" || build.branch == "9.0" || build.branch == "8.19" || build.branch == "8.18" || build.branch == "7.17" + if: build.branch =~ /^(main|\d+\.\d+|\d+\.x)$/ - label: check-branch-consistency command: .ci/scripts/run-gradle.sh branchConsistency timeout_in_minutes: 15