forked from cybozu/assam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
28 lines (28 loc) · 968 Bytes
/
renovate.json5
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
{
"extends": [
":label(renovate)", // Add label.
":prConcurrentLimit10", // Limit to maximum 10 open PRs.
":timezone(Asia/Tokyo)",
":enableVulnerabilityAlertsWithLabel(security)", // Raise PR when vulnerability alerts are detected with label security.
":semanticCommitTypeAll(chore)", // If semantic commits detected, use semantic commit type chore for all
],
dependencyDashboard: true,
dependencyDashboardLabels: ["renovate"],
"postUpdateOptions": [
"gomodTidy" // Enable go mod tidy.
],
"groupName": "all", // Combine pull requests into one
"schedule": ["after 3am on the first day of the month"], // Monthly(before 3am on the first day of the month) is unstable.
packageRules: [
{
groupName: "golang-version",
matchDatasources: ["golang-version"],
matchManagers: ["gomod"]
},
{
groupName: "golang-version",
matchManagers: ["asdf"],
matchPackageNames: ["golang"]
},
]
}