New hook for enforcing branch name

Use a regex to validate the naming convention the branch should follow.
If it's not correct, it fails.
This commit is contained in:
Mariano Anaya 2024-05-31 13:08:20 +02:00
parent ee30c6ada9
commit 86d5ab84cb
4 changed files with 58 additions and 0 deletions

View file

@ -204,3 +204,10 @@
language: python
types: [text]
stages: [commit, push, manual]
- id: enforce-branch-name
name: enforce branch name
description: Make sure the current branch follows one of the accepted patterns.
entry: enforce-branch-name
language: python
pass_filenames: false
always_run: true

View file

@ -210,6 +210,18 @@ Trims trailing whitespace.
- By default, this hook trims all whitespace from the ends of lines.
To specify a custom set of characters to trim instead, use `args: [--chars,"<chars to trim>"]`.
#### `enforce-branch-name`
Validates the branch name follows a pattern.
- `-p` / `--pattern` is used to pass the regex a valid branch name should have.
Note that `enforce-branch-name` is configured by default to [`always_run`](https://pre-commit.com/#config-always_run).
As a result, it will ignore any setting of [`files`](https://pre-commit.com/#config-files),
[`exclude`](https://pre-commit.com/#config-exclude), [`types`](https://pre-commit.com/#config-types)
or [`exclude_types`](https://pre-commit.com/#config-exclude_types).
Set [`always_run: false`](https://pre-commit.com/#config-always_run) to allow this hook to be skipped according to these
file filters. Caveat: In this configuration, empty commits (`git commit --allow-empty`) would always be allowed by this hook.
### Deprecated / replaced hooks
- `check-byte-order-marker`: instead use fix-byte-order-marker

View file

@ -0,0 +1,38 @@
from __future__ import annotations
import argparse
import re
from typing import AbstractSet
from typing import Sequence
from pre_commit_hooks.util import CalledProcessError
from pre_commit_hooks.util import cmd_output
OK = 0
ERROR = 1
def branch_follows_pattern(patterns: AbstractSet[str]) -> bool:
try:
ref_name = cmd_output("git", "symbolic-ref", "HEAD")
except CalledProcessError:
return False
chunks = ref_name.strip().split("/")
branch_name = "/".join(chunks[2:])
return any(re.match(p, branch_name) for p in patterns)
def main(argv: Sequence[str] | None = None) -> int:
parser = argparse.ArgumentParser()
parser.add_argument(
"-p",
"--pattern",
action="append",
help=("regex pattern that the name of the branch must comply with"),
)
args = parser.parse_args(argv)
return OK if branch_follows_pattern(frozenset(args.pattern)) else ERROR
if __name__ == "__main__":
raise SystemExit(main())

View file

@ -63,6 +63,7 @@ console_scripts =
requirements-txt-fixer = pre_commit_hooks.requirements_txt_fixer:main
sort-simple-yaml = pre_commit_hooks.sort_simple_yaml:main
trailing-whitespace-fixer = pre_commit_hooks.trailing_whitespace_fixer:main
enforce-branch-name = pre_commit_hooks.enforce_branch_name:main
[bdist_wheel]
universal = True