Skip to content

Commit e9a02e1

Browse files
committed
feat: Add release please workflow
1 parent 2ca899d commit e9a02e1

File tree

2 files changed

+83
-0
lines changed

2 files changed

+83
-0
lines changed

.github/workflows/release.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release-please:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: google-github-actions/[email protected]
13+
with:
14+
release-type: node
15+
package-name: release-please-action

release-please-config.json

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"bootstrap-sha": "8ddc057b66a16f494aae11b38ee0256ff55c52ec",
3+
"include-v-in-tag": false,
4+
"tag-separator": "@",
5+
"changelog-sections": [
6+
{
7+
"type": "feat",
8+
"section": "Features",
9+
"hidden": false
10+
},
11+
{
12+
"type": "feature",
13+
"section": "Features"
14+
},
15+
{
16+
"type": "fix",
17+
"section": "Updates and Bug Fixes",
18+
"hidden": false
19+
},
20+
{
21+
"type": "perf",
22+
"section": "Performance Improvements"
23+
},
24+
{
25+
"type": "ci",
26+
"section": "Continuous Integration",
27+
"hidden": false
28+
},
29+
{
30+
"type": "chore",
31+
"section": "Miscellaneous",
32+
"hidden": false
33+
},
34+
{
35+
"type": "revert",
36+
"section": "Reverts"
37+
},
38+
{
39+
"type": "docs",
40+
"section": "Documentation"
41+
},
42+
{
43+
"type": "style",
44+
"section": "Styles",
45+
"hidden": false
46+
},
47+
{
48+
"type": "refactor",
49+
"section": "Code Refactoring",
50+
"hidden": false
51+
},
52+
{
53+
"type": "test",
54+
"section": "Tests",
55+
"hidden": false
56+
},
57+
{
58+
"type": "build",
59+
"section": "Build System",
60+
"hidden": false
61+
},
62+
{
63+
"type": "",
64+
"section": "Changes",
65+
"hidden": false
66+
}
67+
]
68+
}

0 commit comments

Comments
 (0)