Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Conventional Commits Check

on:
pull_request:
branches: [ main ]

jobs:
check-conventional-commits:
name: Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Check Commit Conventions
uses: webiny/action-conventional-commits@v1.3.0
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/release-please.yml@release-please-v2.0.0
secrets: inherit
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
22 changes: 22 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"changelog-sections": [
{ "type": "feat", "section": "🚀 Features", "hidden": false },
{ "type": "change", "section": "🚀 Features", "hidden": false },
{ "type": "deprecate", "section": "⚠️ Changes", "hidden": false },
{ "type": "remove", "section": "⚠️ Changes", "hidden": false },
{ "type": "fix", "section": "🐞 Bug Fixes", "hidden": false },
{ "type": "revert", "section": "🐞 Bug Fixes", "hidden": false },
{ "type": "security", "section": "🐞 Bug Fixes", "hidden": false },
{ "type": "perf", "section": "✨ Polish", "hidden": false },
{ "type": "refactor", "section": "✨ Polish", "hidden": false },
{ "type": "style", "section": "✨ Polish", "hidden": false },
{ "type": "build", "section": "🧰 Other", "hidden": false },
{ "type": "chore", "section": "🧰 Other", "hidden": false },
{ "type": "deps", "section": "🧰 Other", "hidden": true },
{ "type": "ci", "section": "🧰 Other", "hidden": true },
{ "type": "test", "section": "🧪 Tests", "hidden": false },
{ "type": "docs", "section": "📚 Documentation", "hidden": true }
],
"release-type": "node"
}