-
Notifications
You must be signed in to change notification settings - Fork 3
/
renovate.json5
34 lines (34 loc) · 1.11 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
// This file is in JSON5 format: https://json5.org
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:base"
],
packageRules: [
{
matchUpdateTypes: ["minor", "patch", "pin", "digest"],
automerge: true,
},
{
// Stop Renovate from updating golang.org/x/exp.
// This library doesn't follow semver and Renovate spams with PRs.
// TODO(@zebradil): consider moving to another library.
// This probably can be done after updating to Go 1.23, which should ship with the following changes:
// https://github.com/golang/go/commit/2b0f2f8169bed01e3bf72d49863cd2852bdf7c7e
"matchPackageNames": ["golang.org/x/exp"],
"enabled": false
}
],
regexManagers: [
{
fileMatch: [
"^(Docker|Container)file$"
],
// # renovate: datasource=github-releases depName=carvel-dev/vendir
// ARG VENDIR_VERSION=0.33.1
matchStrings: [
"#\\s+renovate:\\s+datasource=(?<datasource>\\S+)\\s+depName=(?<depName>\\S+)\\s+(ARG|ENV)\\s+\\S+=['\"]?(?<currentValue>[^'\"\\s]+)['\"]?",
],
},
],
}