Skip to content

chore(deps): update actions/checkout action to v6 #454

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #454

Workflow file for this run

name: Lint PR title
on:
pull_request:
types:
- edited
- opened
- reopened
- synchronize
jobs:
lint-pr-title:
runs-on: ubuntu-24.04
steps:
- name: Checkout Repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/setup
- name: Install commitlint
run: |
pnpm i -D commitlint @commitlint/config-conventional
- name: Validate PR title
run: echo "${{ github.event.pull_request.title }}" | pnpm dlx commitlint -x '@commitlint/config-conventional'