test(update): testing

This commit is contained in:
Jan K9f 2025-04-07 19:06:28 +02:00
parent 7dc765f55c
commit e92a559e95
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -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'