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
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": ["config:recommended"],
  "packageRules": [
    {
      "matchManagers": ["bundler", "dockerfile", "github-actions"],
      "schedule": ["every weekend"]
    },
    {
      "matchManagers": ["custom.regex"],
      "groupName": "CDN dependencies"
    }
  ],
  "customManagers": [
    {
      "customType": "regex",
      "fileMatch": ["lib/ketchup/views/layout\\.rb$"],
      "matchStrings": [
        "src:\\s*\"https://unpkg\\.com/(?<depName>[^@]+)@(?<currentValue>[^/]+)/",
        "src:\\s*\"https://cdn\\.jsdelivr\\.net/npm/(?<depName>[^@]+)@(?<currentValue>[^/]+)/"
      ],
      "datasourceTemplate": "npm"
    }
  ]
}