From 5b003c1e818333bf07eb85c13eadbd70c65547af Mon Sep 17 00:00:00 2001 From: Razvan Azamfirei Date: Fri, 21 Apr 2023 12:54:16 -0400 Subject: [PATCH] CI: add prerelease exceptions to ci-skip-repository (#145600) --- cmd/lib/ci_matrix.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/lib/ci_matrix.rb b/cmd/lib/ci_matrix.rb index 944c3c24e4..df1bdec892 100644 --- a/cmd/lib/ci_matrix.rb +++ b/cmd/lib/ci_matrix.rb @@ -141,8 +141,9 @@ module CiMatrix audit_exceptions << "livecheck_min_os" if labels.include?("ci-skip-livecheck-min-os") if labels.include?("ci-skip-repository") - audit_exceptions << ["github_repository", "gitlab_repository", - "bitbucket_repository"] + audit_exceptions << %w[github_repository github_prerelease_version + gitlab_repository gitlab_prerelease_version + bitbucket_repository] end audit_args << "--except" << audit_exceptions.join(",") if audit_exceptions.any?