test(update): testing
This commit is contained in:
parent
7dc765f55c
commit
e92a559e95
1 changed files with 3 additions and 4 deletions
|
@ -1,9 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Semantic commit pattern:
|
||||
# feat|fix|docs|style|refactor|test|perf|build|ci|chore|revert(optional scope): message
|
||||
# Allow dots (.), uppercase letters, and other common filename characters in scope
|
||||
PATTERN='^(feat|fix|docs|style|refactor|test|perf|build|ci|chore|revert)(\([a-zA-Z0-9\-\.\_]+\))?: .{1,}$'
|
||||
# Semantic commit pattern - fixed to properly handle hyphens in scope
|
||||
# Moved the hyphen to the end of the character class to avoid interpretation issues
|
||||
PATTERN='^(feat|fix|docs|style|refactor|test|perf|build|ci|chore|revert)(\([a-zA-Z0-9\._-]+\))?: .{1,}$'
|
||||
|
||||
# Pattern for merge commits from pull requests - simplified to catch all formats
|
||||
PR_MERGE_PATTERN='^Merge pull request'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue