-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault.json
100 lines (100 loc) · 2.68 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Default preset for use with Renovate's repos",
"extends": [
"config:best-practices",
":maintainLockFilesWeekly",
":enablePreCommit",
"group:all",
"regexManagers:dockerfileVersions",
"schedule:weekly",
"workarounds:supportRedHatImageVersion",
":gitSignOff",
":pinDigestsDisabled",
"customManagers:gitlabPipelineVersions",
"github>platform-engineering-org/.github//fedora.json"
],
"git-submodules": {
"enabled": true
},
"cloneSubmodules": true,
"packageRules": [
{
"description": "Patch and digest updates",
"matchUpdateTypes": [
"patch",
"digest"
],
"groupName": "Auto merged updates",
"automerge": true,
"platformAutomerge": true
},
{
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": true
},
{
"description": "Group go updates",
"matchManagers": [
"gomod"
],
"groupName": "go updates",
"postUpdateOptions": [
"gomodUpdateImportPaths",
"gomodTidy"
]
},
{
"description": "Override the docker:pinDigests preset provided by config:best-practices",
"matchDatasources": [
"docker"
],
"pinDigests": false
},
{
"description": "Override the helpers:pinGitHubActionDigests preset provided by config:best-practices",
"matchDepTypes": [
"action"
],
"pinDigests": false
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update terraform",
"fileMatch": [".devcontainer/devcontainer.json"],
"matchStrings": [
"\\s*\"version\":\\s*\"(?<currentValue>.*?)\" // renovate: packageName=hashicorp/terraform"
],
"depNameTemplate": "hashicorp/terraform",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"fileMatch": [
"^.gitlab-ci.yml$"
],
"matchStrings": [
"https://gitlab\\.com/renovate-bot/renovate-runner/-/raw/(?<currentValue>.*?)/templates/renovate\\.gitlab-ci\\.yml"
],
"depNameTemplate": "renovate-bot/renovate-runner",
"registryUrlTemplate": "https://gitlab.com",
"datasourceTemplate": "gitlab-releases"
}
],
"configMigration": true,
"onboardingNoDeps": "auto",
"gitAuthor": "Platform Engineering Bot <[email protected]>",
"gitIgnoredAuthors": [
],
"rebaseWhen": "behind-base-branch",
"prConcurrentLimit": 0
}