Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

ci: only one instance of release workflow to run at once #11

ci: only one instance of release workflow to run at once

ci: only one instance of release workflow to run at once #11

Workflow file for this run

name: Run release-please to prepare release PR
on:
push:
branches:
- main
# Only allow one instance of this workflow to run at a time, per branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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.GH_RELEASE_TOKEN }}