File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments