|
3 | 3 | "extends": [
|
4 | 4 | "config:base"
|
5 | 5 | ],
|
| 6 | + "rebaseWhen": "never", |
6 | 7 | // The maximum number of PRs to be created in parallel
|
7 | 8 | "prConcurrentLimit": 5,
|
8 | 9 | // The branches renovate should target
|
|
12 | 13 | "postUpdateOptions": ["gomodTidy"],
|
13 | 14 | "semanticCommits": "enabled",
|
14 | 15 | // All PRs should have a label
|
15 |
| - "labels": ["automated", "do not backport"], |
| 16 | + "labels": ["automated", "do not backport", "no-issue"], |
16 | 17 | "regexManagers": [
|
17 | 18 | {
|
18 | 19 | // We want a PR to bump Kustomize version in the Makefile
|
19 | 20 | "fileMatch": [
|
20 | 21 | "^Makefile$",
|
21 | 22 | ],
|
22 | 23 | "matchStrings": [
|
23 |
| - "KUSTOMIZE_VERSION \\?\\= (?<currentValue>.*?)\\n" |
| 24 | + "KUSTOMIZE_VERSION \\?= (?<currentValue>.*?)\\n" |
24 | 25 | ],
|
25 | 26 | "datasourceTemplate": "go",
|
26 | 27 | "depNameTemplate": "sigs.k8s.io/kustomize/kustomize/v4",
|
|
30 | 31 | "^Makefile$",
|
31 | 32 | ],
|
32 | 33 | "matchStrings": [
|
33 |
| - "CONTROLLER_TOOLS_VERSION \\?\\= (?<currentValue>.*?)\\n" |
| 34 | + "CONTROLLER_TOOLS_VERSION \\?= (?<currentValue>.*?)\\n" |
34 | 35 | ],
|
35 | 36 | "datasourceTemplate": "go",
|
36 | 37 | "depNameTemplate": "sigs.k8s.io/controller-tools",
|
|
40 | 41 | "^Makefile$",
|
41 | 42 | ],
|
42 | 43 | "matchStrings": [
|
43 |
| - "GORELEASER_VERSION \\?\\= (?<currentValue>.*?)\\n" |
| 44 | + "GORELEASER_VERSION \\?= (?<currentValue>.*?)\\n" |
44 | 45 | ],
|
45 | 46 | "datasourceTemplate": "go",
|
46 | 47 | "versioningTemplate": "loose",
|
47 | 48 | "depNameTemplate": "github.com/goreleaser/goreleaser",
|
48 | 49 | }, {
|
49 |
| - // We want a PR to bump kind version in the Makefile |
| 50 | + // We want a PR to bump kind node version in the Makefile |
50 | 51 | "fileMatch": [
|
51 | 52 | "^Makefile$",
|
| 53 | + "^hack/setup-cluster.sh^", |
52 | 54 | ],
|
53 | 55 | "matchStrings": [
|
54 |
| - "KIND_CLUSTER_VERSION \\?\\= (?<currentValue>.*?)\\n" |
| 56 | + "KIND_CLUSTER_VERSION \\?= (?<currentValue>.*?)\\n", |
| 57 | + "K8S_DEFAULT_VERSION=(?<currentValue>.*?)\\n", |
55 | 58 | ],
|
56 | 59 | "datasourceTemplate": "docker",
|
57 | 60 | "versioningTemplate": "loose",
|
58 | 61 | "depNameTemplate": "kindest/node",
|
59 | 62 | }, {
|
60 |
| - // We want a PR to bump kind version in the Makefile |
| 63 | + // We want a PR to bump spellcheck version in the Makefile |
61 | 64 | "fileMatch": [
|
62 | 65 | "^Makefile$",
|
63 | 66 | ],
|
64 | 67 | "matchStrings": [
|
65 |
| - "SPELLCHECK_VERSION \\?\\= (?<currentValue>.*?)\\n" |
| 68 | + "SPELLCHECK_VERSION \\?= (?<currentValue>.*?)\\n" |
66 | 69 | ],
|
67 | 70 | "datasourceTemplate": "docker",
|
68 | 71 | "versioningTemplate": "loose",
|
69 | 72 | "depNameTemplate": "jonasbn/github-action-spellcheck",
|
70 | 73 | }, {
|
71 |
| - // We want a PR to bump kind version in the Makefile |
| 74 | + // We want a PR to bump woke version in the Makefile |
72 | 75 | "fileMatch": [
|
73 | 76 | "^Makefile$",
|
74 | 77 | ],
|
75 | 78 | "matchStrings": [
|
76 |
| - "WOKE_VERSION \\?\\= (?<currentValue>.*?)\\n" |
| 79 | + "WOKE_VERSION \\?= (?<currentValue>.*?)\\n" |
77 | 80 | ],
|
78 | 81 | "datasourceTemplate": "docker",
|
79 | 82 | "versioningTemplate": "loose",
|
|
91 | 94 | "datasourceTemplate": "docker",
|
92 | 95 | "versioningTemplate": "loose",
|
93 | 96 | }, {
|
94 |
| -// We want a PR to bump Go versions used through env variables in any Github |
95 |
| -// Actions, taking it from the official Github repository. |
| 97 | +// We want a PR to bump Go versions used through env variables in any GitHub |
| 98 | +// Actions, taking it from the official GitHub repository. |
96 | 99 | "fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"],
|
97 | 100 | "matchStrings": [
|
98 | 101 | "GO_VERSION: '(?<currentValue>.*?)'\\n"
|
|
101 | 104 | "depNameTemplate": "golang"
|
102 | 105 | }, {
|
103 | 106 | // We want a PR to bump golangci-lint versions used through env variables in
|
104 |
| -// any Github Actions or Makefile, taking it from the official Github |
| 107 | +// any GitHub Actions or Makefile, taking it from the official GitHub |
105 | 108 | // repository tags.
|
106 | 109 | "fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"],
|
107 | 110 | "matchStrings": [
|
|
124 | 127 | "allowedVersions": "<1.0"
|
125 | 128 | }, {
|
126 | 129 | // We want a single PR for all the patches bumps of kubernetes related
|
127 |
| -// dependencies, as most of the times these are all strictly related. |
| 130 | +// dependencies, as usually these are all strictly related. |
128 | 131 | "matchDatasources": [
|
129 | 132 | "go"
|
130 | 133 | ],
|
|
190 | 193 | ],
|
191 | 194 | "groupName": "all non-major go dependencies"
|
192 | 195 | }, {
|
193 |
| -// We want a single PR for all minor and patch bumps of Github Actions |
| 196 | +// We want a single PR for all minor and patch bumps of GitHub Actions |
194 | 197 | "matchDepTypes": [
|
195 | 198 | "action"
|
196 | 199 | ],
|
|
199 | 202 | "patch"
|
200 | 203 | ],
|
201 | 204 | "groupName": "all non-major github action",
|
202 |
| - "pinDigests": true |
| 205 | + "pinDigests": false |
203 | 206 | },{
|
204 |
| -// We want dedicated PRs for each major bump to Github Actions |
| 207 | +// We want dedicated PRs for each major bump to GitHub Actions |
205 | 208 | "matchDepTypes": [
|
206 | 209 | "action"
|
207 | 210 | ],
|
208 |
| - "pinDigests": true |
| 211 | + "pinDigests": false |
209 | 212 | }
|
210 | 213 | ]
|
211 | 214 | }
|
0 commit comments