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
|
#!/bin/bash
|
||||||
|
|
||||||
# Semantic commit pattern:
|
# Semantic commit pattern - fixed to properly handle hyphens in scope
|
||||||
# feat|fix|docs|style|refactor|test|perf|build|ci|chore|revert(optional scope): message
|
# Moved the hyphen to the end of the character class to avoid interpretation issues
|
||||||
# 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,}$'
|
||||||
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
|
# Pattern for merge commits from pull requests - simplified to catch all formats
|
||||||
PR_MERGE_PATTERN='^Merge pull request'
|
PR_MERGE_PATTERN='^Merge pull request'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue