Skip to content

Commit 21b8a77

Browse files
committed
Added rule to not update major versions
1 parent e076723 commit 21b8a77

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/renovate.json5

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"**/*~/**"
1616
],
1717
"packageRules": [
18-
1918
// Run unity-upm-project and unity-upm-package only on weekends to reduce PR noise
2019
// Also ensure dependencies won't be downgraded when they don't exist in the public repositories
2120
{
@@ -29,11 +28,14 @@
2928
],
3029
"rollbackPrs": false
3130
},
32-
3331
// Enable automerge for Bokken image updates
3432
{
3533
"matchDatasources": ["unity-bokken"],
3634
"automerge": false,
3735
},
36+
{
37+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
38+
"description": "Disallow major version updates"
39+
}
3840
],
3941
}

0 commit comments

Comments
 (0)