Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "ci: TT-305 testing commits"
This reverts commit 95f3e37.
  • Loading branch information
bytesantiago committed Aug 5, 2021
commit 9f1819df980a8f304360a6a225a20076759a9e3d
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
language: python
stages : [commit-msg]
- repo: https://github.com/psf/black
rev: 21.7b0
rev: stable
hooks:
- id: black
args: [--line-length=79, --skip-string-normalization]
Expand Down
2 changes: 1 addition & 1 deletion commons/git_hooks/enforce_semantic_commit_msg.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

SUCCESS_MSG = "Commit succeed!. Semantic commit message is correct."

COMMIT_MSG_REGEX = r'(build|ci|docs|feat|fix|perf|refactor|test|chore|revert)(\([\w\-]+\))?: TT-[0-9]+ .*' # test
COMMIT_MSG_REGEX = r'(build|ci|docs|feat|fix|perf|refactor|test|chore|revert)(\([\w\-]+\))?: TT-[0-9]+ .*'

# Get the commit message file
commit_msg_file = open(sys.argv[1]) # The first argument is the file
Expand Down