mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
Contribute a pre-commit hook specification, so https://pre-commit.com/ can discover how to run kubeconform.
11 lines
325 B
YAML
11 lines
325 B
YAML
- id: kubeconform
|
|
name: kubeconform
|
|
description: Kubernetes manifest validation
|
|
entry: kubeconform
|
|
language: golang
|
|
pass_filenames: true
|
|
require_serial: true
|
|
minimum_pre_commit_version: "2.9.0"
|
|
stages: [pre-commit, pre-merge-commit, pre-push, manual]
|
|
exclude: ^\. # paths starting with .
|
|
types: ["yaml"]
|