aboutsummaryrefslogtreecommitdiffstats
path: root/renovate.json
blob: b815ae4bf88e119ea9703c45bf85ff3901fb1995 (plain) (blame)
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
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "config:base"
  ],
  "dependencyDashboardApproval": false,
  "transitiveRemediation": true,
  "prHourlyLimit": 20,
  "prConcurrentLimit": 20,
  "ignorePaths": [],
  "ignoreDeps": [],
  "schedule": ["before 6am on thursday"],
  "minimumReleaseAge": "14 days",
  "packageRules": [
    {
      "description": "Disable version updates for Vespa artifacts",
      "matchPackagePatterns": ["^com\\.yahoo\\.vespa"],
      "matchManagers": ["maven"],
      "enabled": false
    },
    {
      "description": "Disable automatic PRs for artifacts, e.g. fixed version required like ZK dependencies or released to frequently. PRs can still be created manually from dependency dashboard.",
      "matchPackageNames": [
        "github.com/go-json-experiment/json",
        "javax.servlet:javax.servlet-api",
        "io.dropwizard.metrics:metrics-core",
        "org.apache.zookeeper:zookeeper"
      ],
      "dependencyDashboardApproval": true
    },
    {
      "description": "Disable automatic PRs for new major versions. PRs can still be created manually from dependency dashboard.",
      "matchUpdateTypes": ["major"],
      "dependencyDashboardApproval": true
    }
  ]
}