aboutsummaryrefslogtreecommitdiffhomepage
path: root/renovate.json
blob: 93d077db42114d193d5e2cbb2b192323a8f2c017 (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
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": ["github>renovatebot/.github"],
  "assignees": ["rarkins", "viceice"],
  "semanticCommitScope": "deps",
  "automergeType": "pr",
  "prCreation": "immediate",
  "dockerfile": {
    "semanticCommitType": "build"
  },
  "packageRules": [
    {
      "matchPackageNames": ["containerbase/node"],
      "versioning": "node"
    },
    {
      "matchDepTypes": ["dependencies"],
      "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": "fix versioning for ben-z/gh-action-mutex, eg v1.0-alpha-8",
      "matchDepNames": ["ben-z/gh-action-mutex"],
      "matchManagers": ["github-actions"],
      "versioning": "regex:^v(?<major>\\d+)\\.(?<minor>\\d+)(?:\\.(?<patch>\\d+))?(?<prerelease>\\-.+)?$"
    }
  ],
  "customManagers": [
    {
      "customType": "regex",
      "fileMatch": ["config/options/index.ts"],
      "matchStrings": [
        "default: '(?<depName>ghcr.io/containerbase/sidecar):(?<currentValue>.*)'"
      ],
      "datasourceTemplate": "docker"
    }
  ]
}