mirror of
https://github.com/XRPLF/clio.git
synced 2025-12-06 17:27:58 +00:00
Note: I used exactly the version which are already being used (didn't update anything). Updates will come when we merge https://github.com/XRPLF/clio/pull/2018
19 lines
815 B
YAML
19 lines
815 B
YAML
name: Check PR title
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
branches: [develop]
|
|
|
|
jobs:
|
|
check_title:
|
|
runs-on: ubuntu-latest
|
|
# permissions:
|
|
# pull-requests: write
|
|
steps:
|
|
- uses: ytanikin/PRConventionalCommits@b628c5a234cc32513014b7bfdd1e47b532124d98 #v1.3.0
|
|
with:
|
|
task_types: '["build","feat","fix","docs","test","ci","style","refactor","perf","chore"]'
|
|
add_label: false
|
|
# Turned off labelling because it leads to an error, see https://github.com/ytanikin/PRConventionalCommits/issues/19
|
|
# custom_labels: '{"build":"build", "feat":"enhancement", "fix":"bug", "docs":"documentation", "test":"testability", "ci":"ci", "style":"refactoring", "refactor":"refactoring", "perf":"performance", "chore":"tooling"}'
|