Skip to content

Commit fcee498

Browse files
authored
ci: Add GitHub Actions workflows for conventional commits and release… (#50)
1 parent adc062e commit fcee498

File tree

5 files changed

+62
-0
lines changed

5 files changed

+62
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Lint PR Title
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- reopened
9+
10+
jobs:
11+
lint-pr-title:
12+
permissions:
13+
pull-requests: read
14+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]

.github/workflows/coverage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Coverage
2+
13
on:
24
pull_request:
35

.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

.release-please-manifest.json

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

release-please-config.json

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

0 commit comments

Comments
 (0)