chore(pr): Version bump
All checks were successful
Rust / build_and_test (push) Successful in 28s
Rust / build_and_test (pull_request) Successful in 29s

This commit is contained in:
Lukas Wölfer
2026-01-18 00:39:33 +01:00
parent 9736adf7b2
commit ad3c700ff7
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ COMMIT_MSG=$(cat "$COMMIT_MSG_FILE")
# Regex pattern for Conventional Commits
# Example: "feat: add new feature" or "fix!: break everything"
PATTERN='^(feat|fix|docs|style|refactor|perf|test|chore|revert|build|ci|wip|workflow)([!]?): .{1,}$'
PATTERN='^(feat|fix|docs|style|refactor|perf|test|chore|revert|build|ci|wip|workflow)(\(.*\))?([!]?): .{1,}$'
if ! echo "$COMMIT_MSG" | grep -Eq "$PATTERN"; then
echo "❌ Invalid commit message format."