mirror of
https://github.com/SimonPistache/famfamfam-silk-svg.git
synced 2025-06-10 11:04:21 +02:00
16 lines
474 B
YAML
16 lines
474 B
YAML
name: PR Conventional Commit Validation
|
|
run-name: Enforce that PR name follow Conventional Commits
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, edited]
|
|
|
|
jobs:
|
|
validate-pr-title:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: PR Conventional Commit Validation
|
|
uses: ytanikin/pr-conventional-commits@1.4.1
|
|
with:
|
|
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
|
|
add_label: 'false' |