mirror of
https://github.com/shizand/statapp.git
synced 2024-12-23 20:22:58 +03:00
Maxim Slipenko
7b0809772c
- добавил push-зеркало (GitFlic) (mirror.yml) - добавил auto-assign (auto-assign.yml) - исправил права доступа для release.yml и pr-title.yml
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# Основан на https://habr.com/ru/articles/662738/
|
||
name: 'Проверка PR заголовка'
|
||
|
||
on:
|
||
pull_request_target:
|
||
types:
|
||
- opened
|
||
- edited
|
||
- synchronize
|
||
|
||
permissions:
|
||
pull-requests: write
|
||
|
||
|
||
jobs:
|
||
main:
|
||
name: Проверка PR заголовка
|
||
runs-on: ubuntu-latest
|
||
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 |