Skip to content

Commit 0a5202c

Browse files
authored
Merge pull request #48 from macojaune/develop
ci: add release-please
2 parents f2c7fed + 7c15ff1 commit 0a5202c

File tree

2 files changed

+92
-0
lines changed

2 files changed

+92
-0
lines changed

.github/workflows/release-please.yml

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

release-please-config.json

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "node",
5+
"changelog-sections": [
6+
{
7+
"type": "feat",
8+
"section": "🚀 New Features",
9+
"hidden": false
10+
},
11+
{
12+
"type": "feature",
13+
"section": "🚀 New Features",
14+
"hidden": false
15+
},
16+
{
17+
"type": "enhance",
18+
"section": "💅 Enhancements",
19+
"hidden": false
20+
},
21+
{
22+
"type": "fix",
23+
"section": "🔥 Bug Fixes",
24+
"hidden": false
25+
},
26+
{
27+
"type": "perf",
28+
"section": "🏃 Performance Improvements",
29+
"hidden": false
30+
},
31+
{
32+
"type": "revert",
33+
"section": "↩️ Reverts",
34+
"hidden": true
35+
},
36+
{
37+
"type": "docs",
38+
"section": "📚 Documentation",
39+
"hidden": false
40+
},
41+
{
42+
"type": "style",
43+
"section": "🎨 Code Style",
44+
"hidden": false
45+
},
46+
{
47+
"type": "chore",
48+
"section": "⚙️ Chores",
49+
"hidden": false
50+
},
51+
{
52+
"type": "refactor",
53+
"section": "⌨️ Code Refactoring",
54+
"hidden": false
55+
},
56+
{
57+
"type": "test",
58+
"section": "🧪 Automated Testing",
59+
"hidden": false
60+
},
61+
{
62+
"type": "build",
63+
"section": "🛠️ Build System",
64+
"hidden": false
65+
},
66+
{
67+
"type": "ci",
68+
"section": "📦 CI Improvements",
69+
"hidden": false
70+
}
71+
]
72+
}
73+
}
74+
}

0 commit comments

Comments
 (0)