-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitmessage
More file actions
26 lines (26 loc) · 820 Bytes
/
.gitmessage
File metadata and controls
26 lines (26 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Conventional Commit Messages for Semantic Release
#
# Format: <type>(<scope>): <description>
#
# Types:
# feat: New feature (triggers minor version bump)
# fix: Bug fix (triggers patch version bump)
# docs: Documentation changes
# style: Code style changes (formatting, etc.)
# refactor: Code refactoring
# test: Adding or updating tests
# chore: Maintenance tasks
# ci: CI/CD changes
# perf: Performance improvements
#
# BREAKING CHANGE: (triggers major version bump)
# Add "BREAKING CHANGE: " in commit body or "!" after type
#
# Examples:
# feat: add support for OpenRouter provider
# fix: resolve API key validation issue
# feat!: remove deprecated configuration options
# docs: update installation instructions
#
# Body and footer are optional
# Reference issues with: Closes #123