This repository was archived by the owner on Jan 6, 2026. It is now read-only.
Bump eslint-plugin-storybook from 0.8.0 to 10.1.0 #26146
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: Changelog | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| - unlabeled | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| check: | |
| if: | | |
| github.event.pull_request.user.login != 'dependabot[bot]' && | |
| !contains(github.event.pull_request.head.ref, 'changeset-release') && | |
| !contains(github.event.pull_request.labels.*.name, '🤖Skip Changelog') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 | |
| - name: Setup Node from .nvmrc | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Check for Changeset | |
| run: npx @changesets/cli status --since="origin/main" |