chore: bump the pnpm-catalog group across 1 directory with 2 updates #3097
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: PR Name Linter | |
| on: | |
| pull_request: | |
| types: ['opened', 'edited', 'reopened', 'synchronize'] | |
| permissions: {} | |
| # This allows a subsequently queued workflow run to interrupt previous runs | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.number }}' | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| # Skip release & dependabot PRs | |
| if: | | |
| ! (github.event.pull_request.title == 'chore(release): publish' && github.event.pull_request.user.login == 'github-actions[bot]') && | |
| ! (github.event.pull_request.user.login == 'dependabot[bot]') | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Install Dependencies | |
| uses: ./.github/actions/install | |
| - name: Check for breaking changes | |
| id: check-major | |
| uses: ./.github/actions/check-major-version | |
| - name: Run PR name linter | |
| env: | |
| TITLE: ${{ github.event.pull_request.title }} | |
| HAS_BREAKING_CHANGES: ${{ steps.check-major.outputs.has-major }} | |
| run: echo "$TITLE" | npx commitlint |