fix(cli): list --help commands and options alphabetically #978
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: Enforce Changeset | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| enforce-changeset: | |
| name: Enforce Changeset | |
| permissions: | |
| contents: read | |
| # Skip the auto-generated Version Packages PR (it consumes changesets, doesn't add them). | |
| if: "${{ github.event.pull_request.title != 'ci(repo): Version Packages' }}" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - run: bun changeset status --since=origin/${{ github.base_ref }} |