random-output 0.3.2

Output random lines to stdout and stderr
Documentation
# release-plz release-pr を使って version と changelog を更新する

name: release-pr

on:
  workflow_dispatch:
  push:
    branches:
      - master

jobs:
  release-pr:
    runs-on: ubuntu-latest

    permissions:
      # Push to the pull request branch.
      contents: write
      # Create and update pull requests.
      pull-requests: write

    concurrency:
      group: release-plz-${{ github.ref }}
      cancel-in-progress: false

    timeout-minutes: 30

    steps:
      - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
        with:
          fetch-depth: 0
          persist-credentials: false

      - name: Create or update release PR
        uses: release-plz/action@2eb1d8bcb770b4c48ccfaad919734b38b51958c9 # v0.5
        with:
          command: release-pr
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}