github-bot-sdk 0.2.0

A comprehensive Rust SDK for GitHub App integration with authentication, webhooks, and API client
Documentation
name: Release-plz PR

on:
    push:
        branches:
            - master

# Prevent concurrent runs from creating duplicate or conflicting PRs.
concurrency:
    group: release-plz-pr-${{ github.ref }}
    cancel-in-progress: false

jobs:
    release-plz-pr:
        name: Release-plz PR
        runs-on: ubuntu-latest
        permissions:
            contents: write
            pull-requests: write
        steps:
            # Generating a GitHub token so that PRs created by release-plz
            # can trigger downstream workflows.
            - name: Generate GitHub token
              uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3
              id: generate-token
              with:
                  app-id: ${{ secrets.RELEASE_PLZ_APP_ID }}
                  private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }}

            - name: Checkout repository
              uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
              with:
                  fetch-depth: 0
                  token: ${{ steps.generate-token.outputs.token }}

            - name: Install Rust toolchain
              uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable

            - name: Install typos
              uses: taiki-e/install-action@58e862542551f667fa44c8a2a4a1d64ad477c96a # v2
              with:
                  tool: typos

            - name: Run release-plz
              uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11 # v0.5
              with:
                  command: release-pr
              env:
                  GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}