chore: added release-plz

This commit is contained in:
jdx 2025-07-16 04:49:54 +00:00
parent b64166e6f5
commit bd8ba20c56
No known key found for this signature in database
GPG key ID: 584DADE86724B407
3 changed files with 86 additions and 0 deletions

33
.github/workflows/release-plz.yml vendored Normal file
View file

@ -0,0 +1,33 @@
name: release-plz
permissions:
pull-requests: write
contents: write
on:
workflow_dispatch:
push:
branches:
- main
- release-plz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_FUND: false
concurrency:
group: release-plz
jobs:
release-plz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- uses: jdx/mise-action@v2
- run: mise run release-plz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}