Bump the prod-deps group across 1 directory with 3 updates #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Changeset Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| # Skip the changeset release PR itself | |
| # changeset-release/main is created by the changesets/action bot | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| changeset-check: | |
| # Don't run on the automated changeset release PR | |
| if: github.head_ref != 'changeset-release/main' | |
| name: Require changeset | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: "9" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Check for changeset | |
| run: pnpx changeset status --since=origin/main |