summaryrefslogtreecommitdiffstats
path: root/renovate.json
blob: a407240469e72ba13d914cfd1add7e046415bc8b (plain)
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
36
37
38
39
40
41
42
43
44
45
46
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": ["config:best-practices", ":approveMajorUpdates"],
  "ignorePresets": [":semanticPrefixFixDepsChoreOthers"],
  "semanticCommits": "disabled",
  "postUpdateOptions": ["gomodUpdateImportPaths", "npmDedupe"],
  "platformAutomerge": false,
  "packageRules": [
    {
      "description": "Require approval for go and python minor version",
      "matchDepNames": ["go", "python"],
      "matchUpdateTypes": ["minor"],
      "dependencyDashboardApproval": true
    },
    {
      "description": "Automerge renovate updates",
      "matchDatasources": ["docker"],
      "matchPackageNames": ["ghcr.io/visualon/renovate"],
      "matchUpdateTypes": ["minor", "patch", "digest"],
      "automerge": true
    },
    {
      "description": "Update renovate only daily",
      "matchDatasources": ["docker"],
      "matchDepNames": ["ghcr.io/visualon/renovate"],
      "extends": ["schedule:daily"]
    },
    {
      "description": "Disable actions/cascading-pr for now <https://github.com/renovatebot/renovate/issues/28120>",
      "matchDepNames": ["actions/cascading-pr"],
      "matchManagers": ["github-actions"],
      "enabled": false
    }
  ],
  "customManagers": [
    {
      "description": "Update go-version in forgejo workflows",
      "customType": "regex",
      "fileMatch": ["^.forgejo/workflows/.+\\.yml$"],
      "matchStrings": ["\\s+go-version: ['\"]?(?<currentValue>.+?)['\"]?\\s"],
      "depNameTemplate": "go",
      "datasourceTemplate": "golang-version",
      "versioningTemplate": "go-mod-directive"
    }
  ]
}