PR check workflow¶
Validate pull requests with an automated check.
Add a CI job that runs bumpwright.
GitHub Actions¶name: pr-check on: pull_request: jobs: decide: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: true - run: bumpwright decide --format md
Run the workflow locally to preview the output.
Console¶$ bumpwright decide --format md
The command mirrors the CI step and is documented in CLI Reference.