|
1 | | ---- |
2 | 1 | convention: |
3 | 2 | commitTypes: |
4 | | - - feat # Commits, that add or remove a new feature to the API or UI |
5 | | - - fix # Commits, that fix a API or UI bug of a preceded feat commit |
6 | | - - refactor # Commits, that rewrite/restructure your code, however do not change any API or UI behaviour |
7 | | - - perf # Commits are special `refactor` commits, that improve performance |
8 | | - - style # Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc) |
9 | | - - test # Commits, that add missing tests or correcting existing tests |
10 | | - - build # Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ... |
11 | | - - ops # Commits, that affect operational components like infrastructure, deployment, backup, recovery, ... |
12 | | - - docs # Commits, that affect documentation only |
13 | | - - chore # Miscellaneous commits e.g. modifying `.gitignore` |
14 | | - - docs |
15 | | - - ci |
16 | | - - merge |
| 3 | + - feat # Commits, that add or remove a new feature to the API or UI |
| 4 | + - fix # Commits, that fix a API or UI bug of a preceded feat commit |
| 5 | + - refactor # Commits, that rewrite/restructure your code, however do not change any API or UI behaviour |
| 6 | + - perf # Commits are special `refactor` commits, that improve performance |
| 7 | + - style # Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc) |
| 8 | + - test # Commits, that add missing tests or correcting existing tests |
| 9 | + - build # Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ... |
| 10 | + - ops # Commits, that affect operational components like infrastructure, deployment, backup, recovery, ... |
| 11 | + - docs # Commits, that affect documentation only |
| 12 | + - chore # Miscellaneous commits e.g. modifying `.gitignore` |
| 13 | + - docs |
| 14 | + - ci |
| 15 | + - merge |
17 | 16 | commitScopes: [] |
18 | 17 | releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]* |
19 | 18 | changelog: |
20 | 19 | commitTypes: |
21 | | - - feat |
22 | | - - fix |
23 | | - - ci |
24 | | - - perf |
25 | | - - merge |
| 20 | + - feat |
| 21 | + - fix |
| 22 | + - ci |
| 23 | + - perf |
| 24 | + - merge |
26 | 25 | includeInvalidCommits: true |
27 | 26 | commitScopes: [] |
28 | 27 | commitIgnoreRegexPattern: "^WIP " |
|
0 commit comments