Skip to content

Commit ded59af

Browse files
chore(config): migrate config renovate.json (#4503)
Co-authored-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent e0f0862 commit ded59af

File tree

1 file changed

+9
-17
lines changed

1 file changed

+9
-17
lines changed

renovate.json

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:best-practices"
5-
],
3+
"extends": ["config:best-practices"],
64
"timezone": "UTC",
7-
"schedule": [
8-
"before 4am on monday"
9-
],
5+
"schedule": ["before 4am on monday"],
106
"prConcurrentLimit": 10,
117
"ignoreDeps": [],
128
"packageRules": [
@@ -18,25 +14,21 @@
1814
{
1915
"description": "Group all Go module updates (main project)",
2016
"matchManagers": ["gomod"],
21-
"matchPaths": [
22-
"go.mod",
23-
"api/go.mod",
24-
"lidia/go.mod"
25-
],
17+
"matchFileNames": ["go.mod", "api/go.mod", "lidia/go.mod"],
2618
"groupName": "gomod",
2719
"schedule": ["before 4am on monday"]
2820
},
2921
{
3022
"description": "Group all npm updates",
3123
"matchManagers": ["npm"],
32-
"matchPaths": ["package.json"],
24+
"matchFileNames": ["package.json"],
3325
"groupName": "npm",
3426
"schedule": ["before 4am on monday"]
3527
},
3628
{
3729
"description": "Group all Docker updates",
3830
"matchManagers": ["dockerfile"],
39-
"matchPaths": ["cmd/pyroscope/**"],
31+
"matchFileNames": ["cmd/pyroscope/**"],
4032
"groupName": "docker",
4133
"schedule": ["before 4am on the first day of the month"]
4234
},
@@ -54,7 +46,7 @@
5446
{
5547
"description": "Go modules examples - only pyroscope-go package",
5648
"matchManagers": ["gomod"],
57-
"matchPaths": [
49+
"matchFileNames": [
5850
"examples/golang-pgo/go.mod",
5951
"examples/language-sdk-instrumentation/golang-push/rideshare-alloy/go.mod",
6052
"examples/language-sdk-instrumentation/golang-push/rideshare-k6/go.mod",
@@ -70,16 +62,16 @@
7062
{
7163
"description": "Ignore all other dependencies in examples directories except pyroscope-go",
7264
"matchManagers": ["gomod"],
73-
"matchPaths": [
65+
"matchFileNames": [
7466
"examples/golang-pgo/go.mod",
7567
"examples/language-sdk-instrumentation/golang-push/rideshare-alloy/go.mod",
7668
"examples/language-sdk-instrumentation/golang-push/rideshare-k6/go.mod",
7769
"examples/language-sdk-instrumentation/golang-push/rideshare/go.mod",
7870
"examples/language-sdk-instrumentation/golang-push/simple/go.mod",
7971
"examples/tracing/golang-push/go.mod"
8072
],
81-
"excludePackageNames": ["github.com/grafana/pyroscope-go"],
82-
"enabled": false
73+
"enabled": false,
74+
"matchPackageNames": ["!github.com/grafana/pyroscope-go"]
8375
},
8476
{
8577
"description": "Automatically merge patch updates",

0 commit comments

Comments
 (0)