Files
blockly/.github/workflows/conventional-label.yml
Maribeth Moffatt 40d72a3881 chore: add commitlint workflow (#9409)
* chore: add commitlint workflow

* chore: exit 1 on fail

* chore: use builtin helpurl
2025-10-08 16:40:14 -07:00

41 lines
1.0 KiB
YAML

on:
pull_request_target:
types:
- opened
- edited
name: commit lint & label
jobs:
lint:
runs-on: ubuntu-latest
permissions:
pull-requests: read
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Check PR title
id: check-pr-title
run: echo "${{ github.event.pull_request.title }}" | npx commitlint --verbose
label:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: bcoe/conventional-release-labels@v1
with:
type_labels:
'{"feat": "PR: feature", "fix": "PR: fix", "breaking": "breaking
change", "chore": "PR: chore", "docs": "PR: docs", "refactor": "PR:
refactor", "revert": "PR: revert", "deprecate": "deprecation"}'
ignored_types: '[]'