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+ "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+ }
You can’t perform that action at this time.
0 commit comments