mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-30 08:35:52 +00:00
18 lines
643 B
YAML
18 lines
643 B
YAML
name: Check PR title
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
branches: [develop]
|
|
|
|
jobs:
|
|
check_title:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: ytanikin/pr-conventional-commits@8267db1bacc237419f9ed0228bb9d94e94271a1d # v1.4.1
|
|
with:
|
|
task_types: '["build","feat","fix","docs","test","ci","style","refactor","perf","chore"]'
|
|
add_label: false
|
|
custom_labels: '{"build":"build", "feat":"enhancement", "fix":"bug", "docs":"documentation", "test":"testability", "ci":"ci", "style":"refactoring", "refactor":"refactoring", "perf":"performance", "chore":"tooling"}'
|