-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgrumphp.yml
56 lines (56 loc) · 1.28 KB
/
grumphp.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
parameters:
git_dir: .
grumphp:
stop_on_failure: true
ascii:
failed: failed.txt
succeeded: succeeded.txt
process_timeout: 60
tasks:
git_branch_name:
whitelist:
- "/c-([0-9]*)/"
- "/conv-([0-9]*)/"
blacklist:
- "main"
additional_modifiers: ''
allow_detached_head: true
git_commit_message:
enforce_capitalized_subject: false
enforce_no_subject_trailing_period: false
matchers:
'Git commit message must begin with a issue number': '/^convivial-demo-[0-9]+: /'
max_body_width: 0
max_subject_width: 0
yamllint: ~
composer: ~
phpcs:
standard: ['phpcs.xml.dist']
ignore_patterns:
- .github
- cypress
- bower_components
- node_modules
- vendor
triggered_by:
- php
securitychecker_composeraudit:
format: null
locked: true
no_dev: false
run_always: true
working_dir: null
securitychecker_enlightn:
lockfile: ./composer.lock
run_always: true
testsuites:
code_quality:
tasks:
- git_commit_message
- yamllint
- composer
- phpcs
code_security:
tasks:
- securitychecker_composeraudit
- securitychecker_enlightn