forked from Minimum-CD/cd-manifesto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
26 lines (26 loc) · 710 Bytes
/
renovate.json
File metadata and controls
26 lines (26 loc) · 710 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"autoApprove": true,
"automerge": true,
"dependencyDashboard": true,
"dependencyDashboardAutoclose": true,
"extends": ["config:recommended"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"description": "NPM Dependencies.",
"matchFileNames": ["**/package.json"],
"groupName": "NPM",
"matchPackageNames": ["*"]
},
{
"matchUpdateTypes": ["minor", "patch"],
"description": "Github Actions Dependencies.",
"matchFileNames": [".github/**"],
"groupName": "NPM-Github",
"matchPackageNames": ["*"]
}
],
"schedule": ["on Thursday after 12pm and before 11pm"],
"timezone": "America/Denver"
}