[#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>
pull/158/head
Stanislav Bogatyrev 2023-03-22 09:24:22 +03:00
parent ec2c5d45b4
commit 3f334e98ef
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[general]
fail-without-commits=true
regex-style-search=true
fail-without-commits=True
regex-style-search=True
contrib=CC1
[title-match-regex]

View File

@ -7,6 +7,7 @@ repos:
hooks:
- id: gitlint
stages: [commit-msg]
- id: gitlint-ci
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0

View File

@ -8,7 +8,7 @@ pipeline:
image: git.frostfs.info/truecloudlab/frostfs-ci:v0.36
commands:
- export HOME="$(getent passwd $(id -u) | cut '-d:' -f6)"
- pre-commit run
- pre-commit run --hook-stage manual
unit:
image: git.frostfs.info/truecloudlab/frostfs-ci:v0.36