From c1f2fe7bcb00472403555d2bbb76a1eb44ea9faa Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Tue, 13 Feb 2024 17:33:54 +0100 Subject: [PATCH] golangci-lint: optionally skip it during "make verify", II The pull-kubernetes-verify job is using this to run the base verify-golangci.sh only in the pull-kubernetes-verify-lint job. Because the file name was not quite right, it still ran. --- hack/make-rules/verify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make-rules/verify.sh b/hack/make-rules/verify.sh index deb9da0f7e7..913b1c45f45 100755 --- a/hack/make-rules/verify.sh +++ b/hack/make-rules/verify.sh @@ -61,7 +61,7 @@ fi # Exclude golangci-lint if requested, for example in pull-kubernetes-verify. if [[ ${EXCLUDE_GOLANGCI_LINT:-} =~ ^[yY]$ ]]; then EXCLUDED_PATTERNS+=( - "verify-golangci.sh" # runs in separate pull-kubernetes-verify-lint + "verify-golangci-lint.sh" # runs in separate pull-kubernetes-verify-lint ) fi