Skip to content

Commit 1c4f435

Browse files
Merge branch 'develop' into perf/reduce-networkbehaviourilpp-type-resolution-time
2 parents 05ea731 + c2dff9d commit 1c4f435

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+
"dependencyDashboard": true,
4+
5+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
6+
"extends": [
7+
"local>Unity-Technologies/unity-renovate-config"
8+
],
9+
"prConcurrentLimit": 100,
10+
// Ignore commits produced by github actions workflows
11+
"gitIgnoredAuthors": ["githubaction@githubaction.com"],
12+
"ignorePaths": [
13+
"**/node_modules/**",
14+
// Don't renovate files in special folders using ~ as suffix
15+
"**/*~/**"
16+
],
17+
"packageRules": [
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)