|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["github>bitwarden/renovate-config"], |
4 | | - "enabledManagers": ["github-actions", "npm", "pipenv", "regex"], |
5 | | - "labels": ["version:patch"], |
| 3 | + "extends": [ |
| 4 | + "github>bitwarden/renovate-config" |
| 5 | + ], |
| 6 | + "enabledManagers": [ |
| 7 | + "github-actions", |
| 8 | + "npm", |
| 9 | + "pipenv", |
| 10 | + "custom.regex" |
| 11 | + ], |
| 12 | + "labels": [ |
| 13 | + "version:patch" |
| 14 | + ], |
6 | 15 | "packageRules": [ |
7 | 16 | { |
8 | 17 | "groupName": "gh minor", |
9 | | - "matchManagers": ["github-actions"], |
10 | | - "matchUpdateTypes": ["minor", "patch"] |
| 18 | + "matchManagers": [ |
| 19 | + "github-actions" |
| 20 | + ], |
| 21 | + "matchUpdateTypes": [ |
| 22 | + "minor", |
| 23 | + "patch" |
| 24 | + ] |
11 | 25 | }, |
12 | 26 | { |
13 | 27 | "groupName": "npm minor", |
14 | | - "matchManagers": ["npm"], |
15 | | - "matchUpdateTypes": ["minor", "patch"] |
| 28 | + "matchManagers": [ |
| 29 | + "npm" |
| 30 | + ], |
| 31 | + "matchUpdateTypes": [ |
| 32 | + "minor", |
| 33 | + "patch" |
| 34 | + ] |
16 | 35 | }, |
17 | 36 | { |
18 | 37 | "groupName": "pipenv minor", |
19 | | - "matchManagers": ["pipenv"], |
20 | | - "matchUpdateTypes": ["minor", "patch"] |
| 38 | + "matchManagers": [ |
| 39 | + "pipenv" |
| 40 | + ], |
| 41 | + "matchUpdateTypes": [ |
| 42 | + "minor", |
| 43 | + "patch" |
| 44 | + ] |
21 | 45 | } |
22 | 46 | ], |
23 | 47 | "customManagers": [ |
24 | 48 | { |
25 | 49 | "customType": "regex", |
26 | | - "fileMatch": [".*/actionlint_version.yaml"], |
27 | | - "matchStrings": ["actionlint_version:\\s*\"(?<currentValue>[^\"]+)\""], |
| 50 | + "managerFilePatterns": [ |
| 51 | + "/.*/actionlint_version.yaml/" |
| 52 | + ], |
| 53 | + "matchStrings": [ |
| 54 | + "actionlint_version:\\s*\"(?<currentValue>[^\"]+)\"" |
| 55 | + ], |
28 | 56 | "depNameTemplate": "rhysd/actionlint", |
29 | 57 | "datasourceTemplate": "github-releases", |
30 | 58 | "versioningTemplate": "semver" |
|
0 commit comments