Skip to content

Commit d15fadc

Browse files
ci: add release please (#6)
Co-authored-by: Robin Le Caignec <[email protected]>
1 parent cb6c28f commit d15fadc

File tree

4 files changed

+46
-0
lines changed

4 files changed

+46
-0
lines changed

.github/workflows/release.yml

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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ docs/
1717
# Dotenv file
1818
.env
1919
.last_deploy.json
20+
21+
.idea

.release-please-manifest.json

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

0 commit comments

Comments
 (0)