|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:best-practices" |
| 5 | + ], |
| 6 | + "timezone": "UTC", |
| 7 | + "schedule": [ |
| 8 | + "before 4am on monday" |
| 9 | + ], |
| 10 | + "prConcurrentLimit": 10, |
| 11 | + "ignoreDeps": [], |
| 12 | + "packageRules": [ |
| 13 | + { |
| 14 | + "description": "Ignore major updates for all dependencies", |
| 15 | + "matchUpdateTypes": ["major"], |
| 16 | + "enabled": false |
| 17 | + }, |
| 18 | + { |
| 19 | + "description": "Group all Go module updates (main project)", |
| 20 | + "matchManagers": ["gomod"], |
| 21 | + "matchPaths": [ |
| 22 | + "go.mod", |
| 23 | + "api/go.mod", |
| 24 | + "lidia/go.mod" |
| 25 | + ], |
| 26 | + "groupName": "gomod", |
| 27 | + "schedule": ["before 4am on monday"] |
| 28 | + }, |
| 29 | + { |
| 30 | + "description": "Group all npm updates", |
| 31 | + "matchManagers": ["npm"], |
| 32 | + "matchPaths": ["package.json"], |
| 33 | + "groupName": "npm", |
| 34 | + "schedule": ["before 4am on monday"] |
| 35 | + }, |
| 36 | + { |
| 37 | + "description": "Group all Docker updates", |
| 38 | + "matchManagers": ["dockerfile"], |
| 39 | + "matchPaths": ["cmd/pyroscope/**"], |
| 40 | + "groupName": "docker", |
| 41 | + "schedule": ["before 4am on the first day of the month"] |
| 42 | + }, |
| 43 | + { |
| 44 | + "description": "Dev containers updates", |
| 45 | + "matchManagers": ["devcontainer"], |
| 46 | + "schedule": ["before 4am on monday"] |
| 47 | + }, |
| 48 | + { |
| 49 | + "description": "Group all GitHub Actions updates", |
| 50 | + "matchManagers": ["github-actions"], |
| 51 | + "groupName": "github-actions", |
| 52 | + "schedule": ["before 4am on monday"] |
| 53 | + }, |
| 54 | + { |
| 55 | + "description": "Go modules examples - only pyroscope-go package", |
| 56 | + "matchManagers": ["gomod"], |
| 57 | + "matchPaths": [ |
| 58 | + "examples/golang-pgo/go.mod", |
| 59 | + "examples/language-sdk-instrumentation/golang-push/rideshare-alloy/go.mod", |
| 60 | + "examples/language-sdk-instrumentation/golang-push/rideshare-k6/go.mod", |
| 61 | + "examples/language-sdk-instrumentation/golang-push/rideshare/go.mod", |
| 62 | + "examples/language-sdk-instrumentation/golang-push/simple/go.mod", |
| 63 | + "examples/tracing/golang-push/go.mod" |
| 64 | + ], |
| 65 | + "allowedVersions": "/.*/", |
| 66 | + "matchPackageNames": ["github.com/grafana/pyroscope-go"], |
| 67 | + "groupName": "examples-gomod", |
| 68 | + "schedule": ["before 4am on monday"] |
| 69 | + }, |
| 70 | + { |
| 71 | + "description": "Ignore all other dependencies in examples directories except pyroscope-go", |
| 72 | + "matchManagers": ["gomod"], |
| 73 | + "matchPaths": [ |
| 74 | + "examples/golang-pgo/go.mod", |
| 75 | + "examples/language-sdk-instrumentation/golang-push/rideshare-alloy/go.mod", |
| 76 | + "examples/language-sdk-instrumentation/golang-push/rideshare-k6/go.mod", |
| 77 | + "examples/language-sdk-instrumentation/golang-push/rideshare/go.mod", |
| 78 | + "examples/language-sdk-instrumentation/golang-push/simple/go.mod", |
| 79 | + "examples/tracing/golang-push/go.mod" |
| 80 | + ], |
| 81 | + "excludePackageNames": ["github.com/grafana/pyroscope-go"], |
| 82 | + "enabled": false |
| 83 | + }, |
| 84 | + { |
| 85 | + "description": "Automatically merge patch updates", |
| 86 | + "matchUpdateTypes": ["patch"], |
| 87 | + "automerge": false, |
| 88 | + "automergeType": "pr", |
| 89 | + "automergeStrategy": "squash", |
| 90 | + "platformAutomerge": false |
| 91 | + } |
| 92 | + ] |
| 93 | +} |
0 commit comments