forked from cloudquery/cloudquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
35 lines (35 loc) · 967 Bytes
/
Copy pathrenovate.json5
File metadata and controls
35 lines (35 loc) · 967 Bytes
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
{
extends: [
"github>cloudquery/.github//.github/renovate-go-default.json5",
"github>cloudquery/.github//.github/renovate-node-default.json5",
"github>cloudquery/.github//.github/renovate-python-default.json5",
],
regexManagers: [
{
fileMatch: ["Dockerfile$"],
matchStrings: ["GORELEASER_VERSION=(?<currentValue>.*)-pro$"],
extractVersionTemplate: "^(?<version>.+)-pro$",
depNameTemplate: "goreleaser/goreleaser-pro",
datasourceTemplate: "github-releases",
},
],
packageRules: [
{ matchManagers: ["npm"], groupName: "Website" },
{
matchPackageNames: ["github.com/jackc/pgx/v4"],
allowedVersions: "<5",
},
{
matchPackageNames: ["github.com/cloudquery/plugin-pb-go"],
matchFileNames: ["plugins/**"],
enabled: false,
},
],
ignorePaths: [],
gomod: {
fileMatch: ["go\\.mod\\.tpl$"],
},
"github-actions": {
fileMatch: ["\\.yaml\\.tpl$"],
},
}