Skip to content

Commit ba259ff

Browse files
authored
Merge pull request #10 from bocan/feat/version-config
Add version configuration file with commit and compare URL formats
2 parents 0a0d29a + 631860a commit ba259ff

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

.versionrc

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"types": [
3+
{
4+
"type": "feat",
5+
"section": "Features"
6+
},
7+
{
8+
"type": "fix",
9+
"section": "Bug Fixes"
10+
},
11+
{
12+
"type": "perf",
13+
"section": "Performance"
14+
},
15+
{
16+
"type": "refactor",
17+
"section": "Code Refactoring"
18+
},
19+
{
20+
"type": "docs",
21+
"section": "Documentation"
22+
},
23+
{
24+
"type": "style",
25+
"section": "Styles"
26+
},
27+
{
28+
"type": "test",
29+
"section": "Tests"
30+
},
31+
{
32+
"type": "chore",
33+
"section": "Chores",
34+
"hidden": false
35+
},
36+
{
37+
"type": "build",
38+
"section": "Build System"
39+
},
40+
{
41+
"type": "ci",
42+
"section": "CI/CD"
43+
}
44+
],
45+
"commitUrlFormat": "https://github.com/bocan/codex/commit/{{hash}}",
46+
"compareUrlFormat": "https://github.com/bocan/codex/compare/{{previousTag}}...{{currentTag}}"
47+
}

0 commit comments

Comments
 (0)