Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ NOCOLOR:=\\033[0m

##@ KEPs

.PHONY: update-toc verify-toc verify-metadata
.PHONY: update-toc verify-toc verify-metadata verify-prr-template

update-toc: ## Updates KEP Table of Contents.
${REPO_ROOT}/hack/update-toc.sh
Expand All @@ -36,6 +36,9 @@ verify-toc: ## Verifies the Table of Contents is in the correct format.
verify-metadata: ## Verifies the KEP metadata is valid yaml.
${REPO_ROOT}/hack/verify-kep-metadata.sh

verify-prr-template: ## Verifies KEPs have complete Production Readiness Review sections.
${REPO_ROOT}/hack/verify-prr-template.py

##@ Verify

.PHONY: add-verify-hook verify verify-boilerplate verify-build verify-golangci-lint verify-go-mod verify-shellcheck verify-spelling
Expand All @@ -50,7 +53,7 @@ verify: ## Runs all verification tests.
${REPO_ROOT}/hack/verify.sh

# TODO(lint): Uncomment verify-shellcheck once we finish shellchecking the repo.
verify: tools verify-boilerplate verify-build verify-golangci-lint verify-go-mod #verify-shellcheck ## Runs verification scripts to ensure correct execution
verify: tools verify-boilerplate verify-build verify-golangci-lint verify-go-mod verify-prr-template #verify-shellcheck ## Runs verification scripts to ensure correct execution

verify-boilerplate: ## Runs the file header check
${REPO_ROOT}/hack/verify-boilerplate.sh
Expand Down
Loading