Skip to content

Commit

Permalink
hack: fix update of golangci-lint verify scripts
Browse files Browse the repository at this point in the history
b190ea0 accidentally enabled verify-golangci-lint-pr-hints.sh (non-blocking!)
in the normal "make verify" (blocking!).
  • Loading branch information
pohly committed Oct 10, 2023
1 parent e4d473c commit f538be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/make-rules/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
)
Expand Down

0 comments on commit f538be6

Please sign in to comment.