Skip to content

Commit

Permalink
Merge pull request #48 from macojaune/develop
Browse files Browse the repository at this point in the history
ci: add release-please
  • Loading branch information
macojaune authored Jan 15, 2025
2 parents f2c7fed + 7c15ff1 commit 0a5202c
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
74 changes: 74 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"packages": {
".": {
"release-type": "node",
"changelog-sections": [
{
"type": "feat",
"section": "🚀 New Features",
"hidden": false
},
{
"type": "feature",
"section": "🚀 New Features",
"hidden": false
},
{
"type": "enhance",
"section": "💅 Enhancements",
"hidden": false
},
{
"type": "fix",
"section": "🔥 Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "🏃 Performance Improvements",
"hidden": false
},
{
"type": "revert",
"section": "↩️ Reverts",
"hidden": true
},
{
"type": "docs",
"section": "📚 Documentation",
"hidden": false
},
{
"type": "style",
"section": "🎨 Code Style",
"hidden": false
},
{
"type": "chore",
"section": "⚙️ Chores",
"hidden": false
},
{
"type": "refactor",
"section": "⌨️ Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "🧪 Automated Testing",
"hidden": false
},
{
"type": "build",
"section": "🛠️ Build System",
"hidden": false
},
{
"type": "ci",
"section": "📦 CI Improvements",
"hidden": false
}
]
}
}
}

0 comments on commit 0a5202c

Please sign in to comment.