chore: configure Release Please
This commit is contained in:
parent
3078e02b4b
commit
147e49895f
1 changed files with 28 additions and 0 deletions
28
.github/workflows/release-please.yml
vendored
Normal file
28
.github/workflows/release-please.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Release Please
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
jobs:
|
||||
release-please:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: googleapis/release-please-action@v4
|
||||
with:
|
||||
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
|
||||
release-type: simple
|
||||
changelog-types: |-
|
||||
[
|
||||
{ "type": "build", "section": "Build System", "hidden": false },
|
||||
{ "type": "chore", "section": "Miscellaneous", "hidden": false }
|
||||
{ "type": "ci", "section": "Continuous Integration", "hidden": false },
|
||||
{ "type": "docs", "section": "Documentation", "hidden": false },
|
||||
{ "type": "feat", "section": "Features", "hidden": false },
|
||||
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
|
||||
{ "type": "perf", "section": "Performance", "hidden": false },
|
||||
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
|
||||
{ "type": "test", "section": "Tests", "hidden": false },
|
||||
]
|
||||
Loading…
Reference in a new issue