Skip to content

ci: add CI, conventional commits, and auto-labeling workflows #2

ci: add CI, conventional commits, and auto-labeling workflows

ci: add CI, conventional commits, and auto-labeling workflows #2

name: PR Conventional Commit Validation
on:
pull_request:
types: [opened, synchronize, reopened, edited]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
jobs:
validate-pr-title:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/pr-conventional-commits@1.5.1
with:
task_types: '["feat","fix","perf","deps","revert","docs","style","chore","refactor","test","build","ci"]'
add_label: "false"