-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress.json
41 lines (41 loc) · 1.26 KB
/
wordpress.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>kleinweb/renovate-config:base",
"group:illuminate",
"group:phpstan"
],
"addLabels": ["automated", "scope:deps"],
"packageRules": [
{
"description": "Adjust semantic commit scope for WordPress core updates",
"matchPackageNames": ["^roots/wordpress"],
"semanticCommitScope": "deps|wp:core",
"addLabels": ["automated", "scope:deps", "scope:wp:core"]
},
{
"description": "Adjust semantic commit scope for required WordPress plugin updates",
"matchDepTypes": ["require"],
"matchPackagePatterns": [
"^wpackagist-plugin",
"^deliciousbrains-plugin",
"advanced-custom-fields",
"alleyinteractive/internal-flags",
"alleyinteractive/meta-inspector"
],
"addLabels": ["automated", "scope:deps", "scope:wp:plugins"],
"semanticCommitScope": "deps|wp:plugin"
},
{
"description": "Check for essential server-side application updates anytime",
"matchDepTypes": ["require"],
"matchPackagePatterns": [
"^wpackagist-plugin",
"^deliciousbrains-plugin",
"advanced-custom-fields",
"^roots"
],
"schedule": null
}
]
}