Skip to content

Commit 9784b58

Browse files
ci(sdk): init release-please
1 parent 62da0dc commit 9784b58

File tree

4 files changed

+56
-58
lines changed

4 files changed

+56
-58
lines changed

.github/workflows/publish-npm-sdk.yml

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

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"packages/sdk": "2.0.0-beta.16"
3+
}

release-please-config.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"include-component-in-tag": false,
4+
"changelog-sections": [
5+
{ "type": "feat", "section": "Added", "hidden": false },
6+
7+
{ "type": "fix", "section": "Changed", "hidden": false },
8+
{ "type": "change", "section": "Changed", "hidden": false },
9+
{ "type": "deprecate", "section": "Changed", "hidden": false },
10+
{ "type": "revert", "section": "Changed", "hidden": false },
11+
{ "type": "security", "section": "Changed", "hidden": false },
12+
{ "type": "perf", "section": "Changed", "hidden": false },
13+
{ "type": "refactor", "section": "Changed", "hidden": false },
14+
15+
{ "type": "remove", "section": "Removed", "hidden": false },
16+
17+
{ "type": "style", "section": "Misc", "hidden": true },
18+
{ "type": "build", "section": "Misc", "hidden": true },
19+
{ "type": "chore", "section": "Misc", "hidden": true },
20+
{ "type": "test", "section": "Misc", "hidden": true },
21+
{ "type": "deps", "section": "Misc", "hidden": true },
22+
{ "type": "ci", "section": "Misc", "hidden": true },
23+
{ "type": "docs", "section": "Misc", "hidden": true }
24+
],
25+
"packages": {
26+
"packages/sdk": {
27+
"release-type": "node",
28+
"changelog-path": "CHANGELOG.md",
29+
"include-v-in-tag": true,
30+
31+
"prerelease": true,
32+
"prerelease-type": "beta",
33+
"versioning": "prerelease"
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)