mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-06 12:06:53 +00:00
Try new hooks
This commit is contained in:
parent
6306a48f7d
commit
81f576ddcb
1 changed files with 49 additions and 0 deletions
|
|
@ -0,0 +1,49 @@
|
||||||
|
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
|
||||||
|
|
||||||
|
|
||||||
|
def is_on_branch(
|
||||||
|
protected: AbstractSet[str],
|
||||||
|
patterns: AbstractSet[str] = frozenset(),
|
||||||
|
) -> 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 branch_name in protected or any(
|
||||||
|
re.match(p, branch_name) for p in patterns
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main(argv: Sequence[str] | None = None) -> int:
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument(
|
||||||
|
'-b', '--branch', action='append',
|
||||||
|
help='branch to disallow commits to, may be specified multiple times',
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'-p', '--pattern', action='append',
|
||||||
|
help=(
|
||||||
|
'regex pattern for branch name to disallow commits to, '
|
||||||
|
'may be specified multiple times'
|
||||||
|
),
|
||||||
|
)
|
||||||
|
args = parser.parse_args(argv)
|
||||||
|
|
||||||
|
protected = frozenset(args.branch or ('master', 'main'))
|
||||||
|
patterns = frozenset(args.pattern or ())
|
||||||
|
result = int(is_on_branch(protected, patterns))
|
||||||
|
print(result)
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
raise SystemExit(main())
|
||||||
Loading…
Add table
Add a link
Reference in a new issue