Skip to content

Commit f673c31

Browse files
authored
ci: add release-please configuration files (#4)
Release-please action requires release-please-config.json and .release-please-manifest.json to be present in the repo.
1 parent 34106c1 commit f673c31

2 files changed

Lines changed: 70 additions & 0 deletions

File tree

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.0"
3+
}

release-please-config.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"release-type": "simple",
3+
"packages": {
4+
".": {
5+
"package-name": "oce-lib-module-config",
6+
"changelog-path": "CHANGELOG.md",
7+
"include-component-in-tag": false,
8+
"include-v-in-tag": false
9+
}
10+
},
11+
"bump-minor-pre-major": true,
12+
"bump-patch-for-minor-pre-major": true,
13+
"changelog-sections": [
14+
{
15+
"type": "feat",
16+
"section": "Features"
17+
},
18+
{
19+
"type": "fix",
20+
"section": "Bug Fixes"
21+
},
22+
{
23+
"type": "perf",
24+
"section": "Performance Improvements"
25+
},
26+
{
27+
"type": "revert",
28+
"section": "Reverts"
29+
},
30+
{
31+
"type": "docs",
32+
"section": "Documentation"
33+
},
34+
{
35+
"type": "style",
36+
"section": "Styles",
37+
"hidden": true
38+
},
39+
{
40+
"type": "chore",
41+
"section": "Miscellaneous Chores",
42+
"hidden": true
43+
},
44+
{
45+
"type": "refactor",
46+
"section": "Code Refactoring"
47+
},
48+
{
49+
"type": "test",
50+
"section": "Tests",
51+
"hidden": true
52+
},
53+
{
54+
"type": "build",
55+
"section": "Build System"
56+
},
57+
{
58+
"type": "ci",
59+
"section": "Continuous Integration",
60+
"hidden": true
61+
},
62+
{
63+
"type": "deps",
64+
"section": "Dependencies"
65+
}
66+
]
67+
}

0 commit comments

Comments
 (0)