feat(components): move the snippet and copy to code components from gonfalon to LP #2942
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: | |
| types: | |
| - labeled | |
| - unlabeled | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| changeset-check: | |
| if: | | |
| !contains(github.event.pull_request.head.ref, 'changeset-release') && | |
| !contains(github.event.pull_request.labels.*.name, 'skip changeset') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Check for Changeset | |
| run: pnpx @changesets/cli status --since="origin/main" |