forked from TrueCloudLab/frostfs-node
[#158] Fix gitlint run in pre-commit under CI
Wrong stage was used. It still may run gitlint against only latest commit in PR. Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
This commit is contained in:
parent
da8da1c63a
commit
f111704ceb
3 changed files with 4 additions and 3 deletions
4
.gitlint
4
.gitlint
|
@ -1,6 +1,6 @@
|
||||||
[general]
|
[general]
|
||||||
fail-without-commits=true
|
fail-without-commits=True
|
||||||
regex-style-search=true
|
regex-style-search=True
|
||||||
contrib=CC1
|
contrib=CC1
|
||||||
|
|
||||||
[title-match-regex]
|
[title-match-regex]
|
||||||
|
|
|
@ -7,6 +7,7 @@ repos:
|
||||||
hooks:
|
hooks:
|
||||||
- id: gitlint
|
- id: gitlint
|
||||||
stages: [commit-msg]
|
stages: [commit-msg]
|
||||||
|
- id: gitlint-ci
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.4.0
|
rev: v4.4.0
|
||||||
|
|
|
@ -8,7 +8,7 @@ pipeline:
|
||||||
image: git.frostfs.info/truecloudlab/frostfs-ci:v0.36
|
image: git.frostfs.info/truecloudlab/frostfs-ci:v0.36
|
||||||
commands:
|
commands:
|
||||||
- export HOME="$(getent passwd $(id -u) | cut '-d:' -f6)"
|
- export HOME="$(getent passwd $(id -u) | cut '-d:' -f6)"
|
||||||
- pre-commit run
|
- pre-commit run --hook-stage manual
|
||||||
|
|
||||||
unit:
|
unit:
|
||||||
image: git.frostfs.info/truecloudlab/frostfs-ci:v0.36
|
image: git.frostfs.info/truecloudlab/frostfs-ci:v0.36
|
||||||
|
|
Loading…
Reference in a new issue