aboutsummaryrefslogtreecommitdiffhomepage
path: root/renovate.json
blob: 3950b9401bc5228d8509ce5167c12488843c3254 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": ["github>renovatebot/.github"],
  "assignees": ["rarkins", "viceice"],
  "semanticCommitScope": "deps",
  "automergeType": "pr",
  "prCreation": "immediate",
  "ignorePresets": [":ignoreModulesAndTests"],
  "ignorePaths": ["**/node_modules/**", "**/__fixtures__/**", "test/**"],
  "rebaseWhen": "conflicted",
  "dockerfile": {
    "semanticCommitType": "build"
  },
  "packageRules": [
    {
      "matchPackageNames": ["containerbase/node"],
      "versioning": "node"
    },
    {
      "matchDepTypes": ["dependencies", "optionalDependencies"],
      "semanticCommitType": "build"
    },
    {
      "matchPackageNames": ["semantic-release"],
      "semanticCommitType": "build"
    },
    {
      "matchPackageNames": ["@types/jest"],
      "groupName": "jest monorepo"
    },
    {
      "matchFileNames": ["**/__fixtures__/**"],
      "enabled": false
    },
    {
      "description": "set fix scope for base image",
      "matchDepNames": ["ghcr.io/renovatebot/base-image"],
      "semanticCommitType": "fix"
    },
    {
      "description": "set feat scope for base image major",
      "matchDepNames": ["ghcr.io/renovatebot/base-image"],
      "matchUpdateTypes": ["major", "minor"],
      "semanticCommitType": "feat"
    },
    {
      "description": "set build scope for node updates",
      "matchPackageNames": ["node"],
      "matchFileNames": [".nvmrc", "tools/docker/Dockerfile"],
      "semanticCommitType": "build"
    },
    {
      "description": "set branch prefix for node major updates to split from minor updates",
      "matchPackageNames": ["node"],
      "matchUpdateTypes": ["major"],
      "additionalBranchPrefix": "major"
    },
    {
      "description": "disable some invalid deps from docs",
      "matchPackageNames": ["my.old.registry/**", "my.new.registry/**"],
      "matchFileNames": ["docs/**/*.md"],
      "enabled": false
    }
  ],
  "customManagers": [
    {
      "customType": "regex",
      "fileMatch": ["config/options/index.ts"],
      "matchStrings": [
        "default: '(?<depName>ghcr.io/containerbase/sidecar):(?<currentValue>.*)'"
      ],
      "datasourceTemplate": "docker"
    }
  ]
}