renovate.json

 1{
 2  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
 3  "extends": [
 4    "config:best-practices"
 5  ],
 6  "ignorePaths": [],
 7  "labels": ["Skip Changelog", "dependencies"],
 8  "postUpdateOptions" : [
 9    "gomodTidy"
10  ],
11  "packageRules": [
12    {
13      "matchManagers": ["gomod"],
14      "matchDepTypes": ["indirect"],
15      "enabled": true
16    },
17    {
18      "matchPackageNames": ["go.opentelemetry.io/build-tools/**"],
19      "groupName": "build-tools"
20    },
21    {
22      "matchPackageNames": ["google.golang.org/genproto/googleapis/**"],
23      "groupName": "googleapis"
24    },
25    {
26      "matchPackageNames": ["golang.org/x/**"],
27      "groupName": "golang.org/x"
28    }
29  ]
30}