-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
78 lines (78 loc) · 3.47 KB
/
default.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Reasonable software update defaults curated by @urcomputeringpal. From https://github.com/urcomputeringpal/.github/blob/main/default.json",
"extends": [
":autodetectRangeStrategy",
"group:monorepos",
"group:recommended",
"workarounds:all",
":automergeDisabled",
":maintainLockFilesWeekly",
":semanticCommits",
":semanticCommitScope(deps)",
"docker:enableMajor",
"docker:pinDigests",
"group:linters",
"helpers:pinGitHubActionDigests",
"preview:dockerCompose",
"preview:dockerVersions"
],
"pin": {
"automerge": false
},
"labels": ["renovate", "{{datasource}}"],
"rebaseWhen": "conflicted",
"prHeader": "Greetings. Renovate would like you to know that there's an update available for your consideration.",
"prFooter": "### Configuring renovate\n\n* [Repository config](https://docs.renovatebot.com/configuration-options/) is loaded from `renovate.json` on the default branch.\n* Defaults are inherited from [`urcomputeringpal/.github`](https://github.com/urcomputeringpal/.github/blob/main/default.json) and optionally at the [organization level](https://docs.renovatebot.com/config-presets/#organization-level-presets).\n* Optional [self-hosted configuration](https://docs.renovatebot.com/self-hosted-configuration/) is loaded from `renovate.js` on the default branch.\n* Changes to configuration pushed to this pull request will be processed with a dry run of Renovate. Inspect the logs to validate if the changes have had the desired effect, then merge to apply them.",
"prBodyTemplate": "{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}{{{controls}}}{{{footer}}}",
"packageRules": [
{
"updateTypes": ["major"],
"addLabels": ["major"]
},
{
"updateTypes": ["minor"],
"addLabels": ["minor"]
},
{
"updateTypes": ["patch"],
"addLabels": ["patch"]
}
],
"regexManagers": [
{
"fileMatch": ["\\.yaml$", "\\.yml$"],
"datasourceTemplate": "github-releases",
"matchStrings": ["quay\\.io\\/(?<depName>[a-z0-9-\/]+):(?<currentValue>.+)"]
},
{
"fileMatch": ["\\.yaml$", "\\.yml$"],
"datasourceTemplate": "docker",
"matchStrings": ["ghcr\\.io\\/(?<depName>[a-z0-9-\/]+):(?<currentValue>[a-z0-9-.]+)(@(?<currentDigest>sha256:[a-f0-9]+))?"],
"versioningTemplate": "docker",
"registryUrlTemplate": "https://ghcr.io"
},
{
"fileMatch": [".+"],
"datasourceTemplate": "github-releases",
"matchStrings": [
"https://raw\\.githubusercontent\\.com/(?<depName>[^/]+/[^/]+)/(?<currentValue>[^/]+)/"
]
},
{
"fileMatch": [".+"],
"datasourceTemplate": "github-releases",
"matchStrings": [
"https://github\\.com/(?<depName>[^/]+/[^/]+)/releases/download/(?<currentValue>[^/]+)/"
]
},
{
"fileMatch": [".+"],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[a-z-0-9]+?))?\\s(?:ENV|ARG) .+?_(v|V)(ersion|ERSION|alue|ALUE)(:|=)\"?(?<currentValue>.+?)\"?\\s",
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s.*_?(v|V)(ersion|ERSION|alue|ALUE)(:|=) ?(?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}