summaryrefslogtreecommitdiff
path: root/renovate.json
blob: 8ef166b87181d4793214d77dbbb83db0bac25938 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
	"extends": [
		"config:base"
	],
	"baseBranches": [
		"develop"
	],
	"timezone": "America/Los_Angeles",
	"lockFileMaintenance": {
		"enabled": true,
		"automerge": true,
		"platformAutomerge": true
	},
	"npm": {
		"stabilityDays": 3
	},
	"dependencyDashboard": true,
	"major": {
		"dependencyDashboardApproval": true
	},
	"packageRules": [
		{
			"description": "Automatically merge minor and patch-level updates",
			"matchUpdateTypes": [
				"minor",
				"patch",
				"digest"
			],
			"automerge": true,
			"automergeType": "branch",
			"platformAutomerge": true,
			"dependencyDashboardApproval": false
		},
		{
			"description": "Require approval for every Go language update",
			"dependencyDashboardApproval": true,
			"matchPackagePatterns": [
				"go"
			]
		},
		{
			"description": "Ignore the old pre-0.1.0 web packages",
			"matchPackageNames": [
				"postcss",
				"tailwindcss",
				"cssnano",
				"htm",
				"mark.js",
				"postcss-cli",
				"@videojs/themes",
				"@joeattardi/emoji-button",
				"preact"
			],
			"enabled": false
		}
	]
}