Skip to content

Commit

Permalink
ci: add release-please github action
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Feb 9, 2024
1 parent b9fb4a6 commit 50e4855
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: release-please

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
release-type: simple
changelog-types: |
[
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"style","section":"Technical","hidden":false},
{"type":"docs","section":"Technical","hidden":false},
{"type":"test","section":"Technical","hidden":false},
{"type":"chore","section":"Technical","hidden":false},
{"type":"refactor","section":"Technical","hidden":false}
]

0 comments on commit 50e4855

Please sign in to comment.