Skip to content

feat(infra): automaticRelease=false, snapshot workflow, proper resolveAndLockAll #16

feat(infra): automaticRelease=false, snapshot workflow, proper resolveAndLockAll

feat(infra): automaticRelease=false, snapshot workflow, proper resolveAndLockAll #16

Workflow file for this run

name: Lint Commit Messages
on:
pull_request:
types: [opened, synchronize, reopened, edited]
permissions:
contents: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Validate PR title follows conventional commits
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
echo "$PR_TITLE" | npx commitlint --config commitlint.config.js
- name: Validate all commits in PR
run: |
npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose