-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.commitlintrc.yaml
More file actions
37 lines (34 loc) · 1006 Bytes
/
Copy path.commitlintrc.yaml
File metadata and controls
37 lines (34 loc) · 1006 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
27
28
29
30
31
32
33
34
35
36
37
# Conventional Commits configuration
# https://www.conventionalcommits.org/
# Valid commit types
types:
- feat # New feature
- fix # Bug fix
- docs # Documentation changes
- style # Code style changes (formatting, missing semicolons, etc)
- refactor # Code refactoring
- perf # Performance improvements
- test # Adding or updating tests
- build # Build system or external dependency changes
- ci # CI/CD configuration changes
- chore # Other changes that don't modify src or test files
- revert # Revert a previous commit
# Optional scopes (can be left empty)
scopes:
- auth
- cli
- config
- entity
- environment
- provider
- relation
- security
- workflow
# Commit message format:
# <type>(<scope>): <subject>
#
# Examples:
# feat(auth): add OIDC authentication support
# fix(entity): correct file permissions for exported files
# docs: update installation instructions
# ci(workflow): upgrade Go to 1.24