/ .github / renovate.json
renovate.json
 1  {
 2    "$schema": "https://docs.renovatebot.com/renovate-schema.json",
 3    "extends": ["config:recommended", "group:recommended"],
 4    "packageRules": [
 5      {
 6        "groupName": "All non-major Python dependencies",
 7        "groupSlug": "all-python-minor-patch",
 8        "matchManagers": ["pep621"],
 9        "matchUpdateTypes": [
10          "minor",
11          "patch"
12        ]
13      },
14      {
15        "groupName": "All non-major GitHub Actions",
16        "groupSlug": "all-gh-minor-patch",
17        "matchManagers": ["github-actions"],
18        "matchUpdateTypes": [
19          "minor",
20          "patch"
21        ]
22      }
23    ],
24    "labels": ["cat: deps", "type: chore"],
25    "ignorePaths": ["Gemfile", "plugins/"],
26    "ignoreDeps": ["uv_build"]
27  }