Skip to content

Commit 5b95263

Browse files
authored
Merge pull request #2 from oblakstudio/renovate/migrate-config
chore(config): migrate renovate config
2 parents abe09a2 + 3b862de commit 5b95263

File tree

1 file changed

+29
-14
lines changed

1 file changed

+29
-14
lines changed

.github/renovate.json

Lines changed: 29 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,54 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": ["config:base"],
3+
"extends": [
4+
"config:recommended"
5+
],
46
"packageRules": [
57
{
6-
"matchPackagePatterns": [".*"],
7-
"matchManagers": ["composer"],
8+
"matchManagers": [
9+
"composer"
10+
],
811
"groupName": "All Dependencies",
912
"groupSlug": "all-dependencies",
10-
"schedule": ["at any time"]
13+
"schedule": [
14+
"at any time"
15+
],
16+
"matchPackageNames": [
17+
"/.*/"
18+
]
1119
},
1220
{
13-
"matchPackagePatterns": ["^php"],
1421
"groupName": "PHP Version",
15-
"separateMinorPatch": true
22+
"separateMinorPatch": true,
23+
"matchPackageNames": [
24+
"/^php/"
25+
]
1626
},
1727
{
18-
"matchPackageNames": ["oblak/transliterator", "symfony/polyfill-php84"],
28+
"matchPackageNames": [
29+
"oblak/transliterator",
30+
"symfony/polyfill-php84"
31+
],
1932
"groupName": "Core Dependencies",
2033
"separateMinorPatch": true
2134
},
2235
{
23-
"matchPackagePatterns": [
24-
"phpstan/*",
25-
"phpunit/*",
26-
"oblak/wordpress-coding-standard"
27-
],
2836
"groupName": "Development Dependencies",
2937
"separateMinorPatch": true,
3038
"automerge": true,
31-
"schedule": ["before 8am on Monday"]
39+
"schedule": [
40+
"before 8am on Monday"
41+
],
42+
"matchPackageNames": [
43+
"/phpstan/*/",
44+
"/phpunit/*/",
45+
"/oblak/wordpress-coding-standard/"
46+
]
3247
}
3348
],
3449
"automerge": false,
3550
"prConcurrentLimit": 5,
3651
"prHourlyLimit": 2,
3752
"rebaseWhen": "auto",
38-
"stabilityDays": 3
53+
"minimumReleaseAge": "3 days"
3954
}

0 commit comments

Comments
 (0)