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
14 changes: 14 additions & 0 deletions .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Lint PR Title

on:
pull_request_target:
types:
- opened
- edited
- reopened

jobs:
lint-pr-title:
permissions:
pull-requests: read
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/conventional-commits.yml@conventional-commits-v1.0.1
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: release-please

on:
push:
branches:
- main

permissions:
contents: write
issues: write
pull-requests: write

jobs:
release-please:
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/release-please.yml@release-please-v2.1.0
secrets: inherit
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.0.0"
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "documentation",
"name": "iexec-documentation",
"version": "0.0.0",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
Expand Down
29 changes: 29 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"packages": {
".": {
"release-type": "node",
"include-v-in-tag": true,
"include-component-in-tag": false,
"changelog-path": "CHANGELOG.md"
}
},
"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 }
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
4 changes: 4 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>iExecBlockchainComputing/renovate-config"]
}