forked from deepnote/deepnote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
41 lines (41 loc) · 1.2 KB
/
renovate.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"draftPR": true,
"pinDigests": true,
"platformAutomerge": false,
"prCreation": "immediate",
"prConcurrentLimit": 5,
"minimumReleaseAge": "1440 minutes",
"packageRules": [
{
"description": "Pin GitHub Actions to commit SHA",
"matchManagers": ["github-actions"],
"pinDigests": true
},
{
"description": "Group non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "non-major dependencies",
"groupSlug": "non-major",
"matchPackageNames": ["*"]
},
{
"description": "Security updates with high priority",
"matchDatasources": ["npm", "github-actions"],
"matchUpdateTypes": ["patch", "minor"],
"prPriority": 10,
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
}
}
],
"schedule": ["before 9am on Monday"],
"timezone": "UTC",
"labels": ["dependencies", "renovate"],
"commitMessagePrefix": "chore(deps):",
"commitMessageAction": "update",
"commitMessageTopic": "{{depName}}",
"semanticCommits": "enabled"
}