CI: add prerelease exceptions to ci-skip-repository (#145600)

This commit is contained in:
Razvan Azamfirei
2023-04-21 12:54:16 -04:00
committed by GitHub
parent 295e6d2661
commit 5b003c1e81
+3 -2
View File
@@ -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?