-
Notifications
You must be signed in to change notification settings - Fork 459
Expand file tree
/
Copy pathrenovate.json5
More file actions
39 lines (36 loc) · 1.03 KB
/
renovate.json5
File metadata and controls
39 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"baseBranches": ["develop", "develop-2.0.0"],
"dependencyDashboard": true,
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>Unity-Technologies/unity-renovate-config"
],
"prConcurrentLimit": 100,
// Ignore commits produced by github actions workflows
"gitIgnoredAuthors": ["githubaction@githubaction.com"],
"ignorePaths": [
"**/node_modules/**",
// Don't renovate files in special folders using ~ as suffix
"**/*~/**"
],
"packageRules": [
// Run unity-upm-project and unity-upm-package only on weekends to reduce PR noise
// Also ensure dependencies won't be downgraded when they don't exist in the public repositories
{
"matchManagers": [
"unity-upm-project",
"unity-upm-package"
],
"enabled": "true",
"schedule": [
"every weekend"
],
"rollbackPrs": false
},
// Enable automerge for Bokken image updates
{
"matchDatasources": ["unity-bokken"],
"automerge": false,
},
],
}