23 lines
623 B
YAML
23 lines
623 B
YAML
# SPDX-FileCopyrightText: 2025 2025
|
|
# SPDX-FileContributor: Gergely Polonkai
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: commitizen
|
|
name: commitizen check
|
|
stages: ["commit-msg"]
|
|
language: system
|
|
entry: poetry run cz
|
|
args: ["check", "--allow-abort", "--commit-msg-file"]
|
|
- id: commitizen-branch
|
|
name: commitizen check branch
|
|
stages: [pre-push]
|
|
language: system
|
|
always_run: true
|
|
entry: poetry run cz
|
|
args: ["check", "--rev-range", "origin/HEAD..HEAD"]
|
|
pass_filenames: false
|