mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-16 14:40:33 +00:00
33 lines
717 B
YAML
33 lines
717 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: recursive
|
|
token: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
|
|
- uses: jdx/mise-action@13abe502c30c1559a5c37dff303831bab82c9402 # v2
|
|
- run: mise run release-plz
|
|
env:
|
|
DRY_RUN: 0
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
|