Skip to content

Commit 01c9f58

Browse files
committed
ci: add release-please
1 parent 48ae860 commit 01c9f58

File tree

4 files changed

+49
-1
lines changed

4 files changed

+49
-1
lines changed

.github/workflows/release-please.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
15+
with:
16+
secrets: inherit

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,8 @@ utils/**
3636
errors/**
3737

3838
# env
39-
.env
39+
.env
40+
41+
# IDE
42+
.vscode
43+
.idea

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{".":"8.13.1"}

release-please-config.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"changelog-sections": [
4+
{"type":"feat","section":"🚀 Features","hidden":false},
5+
{"type":"change","section":"🚀 Features","hidden":false},
6+
{"type":"deprecate","section":"⚠️ Changes","hidden":false},
7+
{"type":"remove","section":"⚠️ Changes","hidden":false},
8+
{"type":"fix","section":"🐞 Bug Fixes","hidden":false},
9+
{"type":"revert","section":"🐞 Bug Fixes","hidden":false},
10+
{"type":"security","section":"🐞 Bug Fixes","hidden":false},
11+
{"type":"perf","section":"✨ Polish","hidden":false},
12+
{"type":"refactor","section":"✨ Polish","hidden":false},
13+
{"type":"style","section":"✨ Polish","hidden":false},
14+
{"type":"build","section":"🧰 Other","hidden":false},
15+
{"type":"chore","section":"🧰 Other","hidden":false},
16+
{"type":"deps","section":"🧰 Other","hidden":true},
17+
{"type":"ci","section":"🧰 Other","hidden":true},
18+
{"type":"test","section":"🧪 Tests","hidden":false},
19+
{"type":"docs","section":"📚 Documentation","hidden":true}
20+
],
21+
"packages": {
22+
".": {
23+
"release-type": "node",
24+
"changelog-path": "CHANGELOG.md"
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)