99
99
fi
100
100
101
101
# Define conventional commit regex
102
- conv_regexp='^(feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert)(\([a-z0-9-]+\))?: .+'
102
+ conv_regexp='^(feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert|deps )(\([a-z0-9-]+\))?: .+'
103
103
104
104
# Validate commits
105
105
gitlint_failed=()
@@ -156,7 +156,7 @@ spec:
156
156
echo ""
157
157
echo "ERROR: Conventional commit format failed for commits: ${conventional_failed[*]}"
158
158
echo "Expected format: type(scope): description"
159
- echo "Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert"
159
+ echo "Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert, deps "
160
160
echo "See: https://www.conventionalcommits.org/en/v1.0.0/#summary"
161
161
exit_code=1
162
162
fi
@@ -165,7 +165,7 @@ spec:
165
165
echo ""
166
166
echo "ERROR: Pull request title validation failed"
167
167
echo "Expected format: type(scope): description"
168
- echo "Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert"
168
+ echo "Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert, deps "
169
169
exit_code=1
170
170
fi
171
171
0 commit comments