forked from astarte-platform/astarte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
92 lines (87 loc) · 2.7 KB
/
Copy pathrenovate.json
File metadata and controls
92 lines (87 loc) · 2.7 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Renovate configuration for Astarte - Conflict-Free Elixir Monorepo",
"extends": [
"config:recommended",
":rebaseStalePrs",
":semanticCommits",
"helpers:pinGitHubActionDigests"
],
"configMigration": true,
"prCreation": "not-pending",
"rebaseWhen": "conflicted",
"platformAutomerge": true,
"automergeType": "branch",
"rangeStrategy": "update-lockfile",
"internalChecksFilter": "strict",
"timezone": "UTC",
"labels": ["renovate"],
"separateMajorMinor": true,
"separateMinorPatch": false,
"prConcurrentLimit": 2,
"prHourlyLimit": 0,
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"automerge": false
},
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 9am on the first day of the month"]
},
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"description": "Prefix GitHub Actions updates with ci(deps)",
"matchManagers": ["github-actions"],
"semanticCommitType": "ci",
"semanticCommitScope": "deps"
},
{
"description": "Prefix Elixir updates with build(deps)",
"matchManagers": ["mix"],
"semanticCommitType": "build",
"semanticCommitScope": "deps"
},
{
"description": "Group all Elixir dependencies together (non-major)",
"matchManagers": ["mix"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "Elixir dependencies (non-major)",
"minimumReleaseAge": "3 days",
"automerge": true,
"labels": ["dependencies", "elixir", "automerge"],
"schedule": ["before 6am on Monday"]
},
{
"description": "Group all Elixir major updates separately",
"matchManagers": ["mix"],
"matchUpdateTypes": ["major"],
"groupName": "Elixir dependencies",
"dependencyDashboardApproval": true,
"automerge": false,
"labels": ["dependencies", "elixir", "major"]
},
{
"description": "Automerge GitHub Actions (non-major)",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["patch", "minor", "digest"],
"groupName": "GitHub Actions (non-major)",
"automerge": true,
"labels": ["dependencies", "github-actions", "automerge"],
"schedule": ["before 6am on Monday"]
},
{
"description": "GitHub Actions major updates require approval",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"groupName": "GitHub Actions",
"dependencyDashboardApproval": true,
"automerge": false,
"labels": ["dependencies", "github-actions", "major"]
}
]
}