Skip to content

Commit 44e2c9b

Browse files
committed
Added renovate configuration targeting both develop branches
1 parent 55ebe26 commit 44e2c9b

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/renovate.json5

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"baseBranches": ["develop", "develop-2.0.0"],
3+
4+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
5+
"extends": [
6+
"local>unity/renovate-config"
7+
],
8+
"prConcurrentLimit": 100,
9+
// Ignore commits produced by github actions workflows
10+
"gitIgnoredAuthors": ["[email protected]"],
11+
"ignorePaths": [
12+
"**/node_modules/**",
13+
// Don't renovate files in special folders using ~ as suffix
14+
"**/*~/**"
15+
],
16+
"packageRules": [
17+
18+
// Run unity-upm-project and unity-upm-package only on weekends to reduce PR noise
19+
// Also ensure dependencies won't be downgraded when they don't exist in the public repositories
20+
{
21+
"matchManagers": [
22+
"unity-upm-project",
23+
"unity-upm-package"
24+
],
25+
"enabled": "true",
26+
"schedule": [
27+
"every weekend"
28+
],
29+
"rollbackPrs": false
30+
},
31+
32+
// Enable automerge for Bokken image updates
33+
{
34+
"matchDatasources": ["unity-bokken"],
35+
"automerge": false,
36+
},
37+
],
38+
}

0 commit comments

Comments
 (0)