-
Notifications
You must be signed in to change notification settings - Fork 24
/
.pre-commit-config.yaml
39 lines (35 loc) · 1.26 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
repos:
- repo: [email protected]:Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
args: ["--baseline", ".secrets.baseline"]
additional_dependencies: ["gibberish-detector"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: no-commit-to-branch
args: [--branch, develop, --branch, master, --pattern, release/.*]
# - repo: https://github.com/gruntwork-io/pre-commit
# rev: v0.1.17 # Get the latest from: https://github.com/gruntwork-io/pre-commit/releases
# hooks:
# - id: helmlint
- repo: https://github.com/norwoodj/helm-docs
rev: "v1.14.2"
hooks:
# Use a pinned version of helm-docs in a container to generate consistent documentation.
- name: helm-docs
id: helm-docs-container
entry: jnorwood/helm-docs:v1.14.2
args:
- "--chart-search-root=helm"
- "--skip-version-footer"
- repo: local
hooks:
- id: helm-chart-bump
args: []
description: Updates the .Chart.yaml with updates version if there are changes since master branch. This is to ensure we bump our charts for updates.
entry: git-hook/helm-bump.sh
language: script
name: Helm Docs
require_serial: true