mirror of
https://github.com/jdx/mise-action.git
synced 2026-07-02 09:39:30 +00:00
34 lines
762 B
YAML
34 lines
762 B
YAML
name: release-plz
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: recursive
|
|
token: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
|
|
persist-credentials: false
|
|
- uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
|
|
- run: mise run release-plz
|
|
env:
|
|
DRY_RUN: 0
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
|