-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.pre-commit-hooks.yaml
More file actions
32 lines (32 loc) · 915 Bytes
/
.pre-commit-hooks.yaml
File metadata and controls
32 lines (32 loc) · 915 Bytes
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
# See https://eng.inky.wtf/docs/technical/git/pre-commit for info on how to edit this file.
- id: check-for-epoch-bump
name: Checks that package yaml files have epoch bumps compared to main
description: Helps to prevent any accidental forgotten epoch bumps so packages rebuild properly
entry: scripts/check-for-epoch-bump.sh
language: script
verbose: true
stages:
- pre-commit
- manual
types:
- yaml
- id: shellcheck-run-steps
name: shellcheck run steps
description: run shellcheck on each "run" step in a melange pipeline
entry: shellcheck-run-steps
language: python
stages:
- pre-commit
- manual
types:
- yaml
- id: check-for-go-fips-test
name: check for go-fips test
description: Check that packages using go-fips have corresponding go-fips tests
entry: check-for-go-fips-test
language: python
stages:
- pre-commit
- manual
types:
- yaml