-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.22 KB
/
pr-title.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Основан на https://habr.com/ru/articles/662738/
name: 'Проверка PR заголовка'
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
main:
name: Проверка PR заголовка
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which types are allowed.
# Default: https://github.com/commitizen/conventional-commit-types
types: |
breaking
chore
ci
docs
feat
fix
refactor
security
style
test
requireScope: false
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
Тема "{subject}" найденная в pull request заголовке "{title}"
не соответствует настроенному шаблону. Пожалуйста, убедитесь,
что тема не начинается с заглавной буквы.
wip: true
validateSingleCommit: false