Prevent committing to dev/master/rc directly (#32029)
* Prevent committing to dev/master/rc directly * Skip pre-commit on version bump
This commit is contained in:
parent
1c81e8ad68
commit
b2f2afaf0c
3 changed files with 25 additions and 20 deletions
|
@ -41,6 +41,11 @@ repos:
|
|||
rev: v2.4.0
|
||||
hooks:
|
||||
- id: check-json
|
||||
- id: no-commit-to-branch
|
||||
args:
|
||||
- --branch=dev
|
||||
- --branch=master
|
||||
- --branch=rc
|
||||
- repo: local
|
||||
hooks:
|
||||
# Run mypy through our wrapper script in order to get the possible
|
||||
|
|
|
@ -65,7 +65,7 @@ enum34==1000000000.0.0
|
|||
pycrypto==1000000000.0.0
|
||||
"""
|
||||
|
||||
IGNORE_PRE_COMMIT_HOOK_ID = ("check-json",)
|
||||
IGNORE_PRE_COMMIT_HOOK_ID = ("check-json", "no-commit-to-branch")
|
||||
|
||||
|
||||
def has_tests(module: str):
|
||||
|
|
|
@ -140,7 +140,7 @@ def main():
|
|||
if not arguments.commit:
|
||||
return
|
||||
|
||||
subprocess.run(["git", "commit", "-am", f"Bumped version to {bumped}"])
|
||||
subprocess.run(["git", "commit", "-nam", f"Bumped version to {bumped}"])
|
||||
|
||||
|
||||
def test_bump_version():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue