From 2c742e426930250403882da896713e434cb51992 Mon Sep 17 00:00:00 2001 From: Razvan Azamfirei Date: Fri, 5 May 2023 09:58:18 -0400 Subject: [PATCH] ci-skip-livecheck: skip https availability (#146560) --- cmd/lib/ci_matrix.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/lib/ci_matrix.rb b/cmd/lib/ci_matrix.rb index 38bef6d7a6..9a1dce9687 100644 --- a/cmd/lib/ci_matrix.rb +++ b/cmd/lib/ci_matrix.rb @@ -136,7 +136,8 @@ module CiMatrix audit_exceptions = [] if labels.include?("ci-skip-livecheck") - audit_exceptions << ["hosting_with_livecheck", "livecheck_version", "livecheck_min_os"] + audit_exceptions << %w[hosting_with_livecheck livecheck_version + livecheck_min_os audit_https_availability] end audit_exceptions << "livecheck_min_os" if labels.include?("ci-skip-livecheck-min-os")