-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
renovate.json5
34 lines (34 loc) · 1.07 KB
/
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
29
30
31
32
33
34
{
extends: [
"github>suzuki-shunsuke/renovate-config#2.5.0",
"github>aquaproj/aqua-renovate-config#2.6.0",
"github>suzuki-shunsuke/renovate-config:nolimit#2.5.0",
"github>aquaproj/aqua-renovate-config:file#2.6.0(CONTRIBUTING\\.md)",
"github>aquaproj/aqua-renovate-config:installer-script#2.6.0(docker/Dockerfile)",
"github>suzuki-shunsuke/renovate-config:action-go-version#2.5.0",
"github>lintnet/renovate-config#0.1.2",
],
packageRules: [
{
matchFileNames: ["docker/Dockerfile"],
pinDigests: false,
},
{
// https://github.com/aquaproj/aqua-registry/pull/29500#issuecomment-2516076434
// There is no problem that the update of golang is a bit late.
matchFileNames: ["docker/Dockerfile"],
matchPackageNames: ["golang"],
minimumReleaseAge: "7 days",
},
],
customManagers: [
{
customType: "regex",
fileMatch: ["README.md"],
matchStrings: [
"ref: (?<currentValue>.*?) # renovate: depName=(?<depName>.*)",
],
datasourceTemplate: "github-releases",
},
],
}