Skip to content

Commit fda20f0

Browse files
committed
feat: Set up release please (#3)
1 parent 50f3b00 commit fda20f0

2 files changed

Lines changed: 83 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: release-please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: google-github-actions/release-please-action@v4
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
release-type: simple

release-please-config.json

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

0 commit comments

Comments
 (0)