Skip to content

Commit

Permalink
feat: Add release please workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ki-er committed Dec 13, 2022
1 parent 2ca899d commit e9a02e1
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release

on:
push:
branches:
- master

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3.7.0
with:
release-type: node
package-name: release-please-action
68 changes: 68 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"bootstrap-sha": "8ddc057b66a16f494aae11b38ee0256ff55c52ec",
"include-v-in-tag": false,
"tag-separator": "@",
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Updates and Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": false
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": false
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles",
"hidden": false
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "build",
"section": "Build System",
"hidden": false
},
{
"type": "",
"section": "Changes",
"hidden": false
}
]
}

0 comments on commit e9a02e1

Please sign in to comment.