From f538be659c719c4ef56719abe5e2d0f236164535 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Mon, 9 Oct 2023 20:07:49 +0200 Subject: [PATCH] hack: fix update of golangci-lint verify scripts b190ea0c9 accidentally enabled verify-golangci-lint-pr-hints.sh (non-blocking!) in the normal "make verify" (blocking!). --- hack/make-rules/verify.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/make-rules/verify.sh b/hack/make-rules/verify.sh index a4cca064e14..a322a165e71 100755 --- a/hack/make-rules/verify.sh +++ b/hack/make-rules/verify.sh @@ -33,8 +33,8 @@ source "${KUBE_ROOT}/third_party/forked/shell2junit/sh2ju.sh" EXCLUDED_PATTERNS=( "verify-all.sh" # this script calls the make rule and would cause a loop "verify-*-dockerized.sh" # Don't run any scripts that intended to be run dockerized - "verify-golangci-lint-pr.sh" # Runs in a separate job for PRs. - "verify-golangci-lint-hints.sh" # Runs in a separate job for PRs. + "verify-golangci-lint-pr.sh" # Runs in a separate job for PRs. + "verify-golangci-lint-pr-hints.sh" # Runs in a separate job for PRs. "verify-licenses.sh" # runs in a separate job to monitor availability of the dependencies periodically "verify-openapi-docs-urls.sh" # Spams docs URLs, don't run in CI. )