|
3 | 3 | "extends": [ |
4 | 4 | // Base configuration |
5 | 5 | "config:best-practices", |
6 | | - |
7 | 6 | // Add "Signed-off-by" footer to commit messages |
8 | 7 | ":gitSignOff", |
9 | | - |
10 | 8 | // Catch-all for grouping dependencies not caught by other groups |
11 | 9 | "group:all" |
12 | 10 | ], |
13 | | - |
14 | 11 | // Rebase when there are merge conflicts |
15 | 12 | // |
16 | 13 | // The "conflicted" option is typically the ideal choice for most situations |
17 | 14 | // where you don't want to burn CI credits, while still keeping your branch |
18 | 15 | // in a mergeable state at all times. |
19 | 16 | "rebaseWhen": "conflicted", |
20 | | - |
21 | 17 | "packageRules": [ |
22 | 18 | // Group GitHub Actions dependencies |
23 | 19 | { |
24 | | - "description": "GitHub Actions dependencies", |
25 | | - "matchManagers": ["github-actions"], |
| 20 | + "description": [ |
| 21 | + "GitHub Actions dependencies" |
| 22 | + ], |
| 23 | + "matchManagers": [ |
| 24 | + "github-actions" |
| 25 | + ], |
26 | 26 | "groupName": "GitHub Actions", |
27 | 27 | "enabled": true |
28 | 28 | }, |
29 | | - |
30 | 29 | // Group Rust dependencies |
31 | 30 | { |
32 | | - "description": "Rust dependencies", |
33 | | - "matchManagers": ["cargo"], |
| 31 | + "description": [ |
| 32 | + "Rust dependencies" |
| 33 | + ], |
| 34 | + "matchManagers": [ |
| 35 | + "cargo" |
| 36 | + ], |
34 | 37 | "groupName": "Rust", |
35 | 38 | "enabled": true |
36 | 39 | }, |
37 | | - |
38 | 40 | // Group Docker dependencies |
39 | 41 | { |
40 | | - "description": "Docker dependencies", |
41 | | - "matchManagers": ["dockerfile"], |
| 42 | + "description": [ |
| 43 | + "Docker dependencies" |
| 44 | + ], |
| 45 | + "matchManagers": [ |
| 46 | + "dockerfile" |
| 47 | + ], |
42 | 48 | "groupName": "Docker", |
43 | 49 | "enabled": true |
44 | 50 | }, |
45 | | - |
46 | 51 | // Disable Containerfile digest pinning |
47 | 52 | { |
48 | | - "description": "Containerfile digest pinning", |
49 | | - "matchManagers": ["dockerfile"], |
| 53 | + "description": [ |
| 54 | + "Containerfile digest pinning" |
| 55 | + ], |
| 56 | + "matchManagers": [ |
| 57 | + "dockerfile" |
| 58 | + ], |
50 | 59 | "pinDigests": false |
51 | 60 | }, |
52 | | - |
53 | 61 | // Disable Fedora OCI updates |
54 | 62 | // |
55 | 63 | // This is due to there not being an easy way to tell Renovate which |
56 | 64 | // Fedora version is "stable" and which has not been released yet. |
57 | 65 | { |
58 | | - "description": "Disable Fedora OCI updates", |
59 | | - "matchManagers": ["dockerfile"], |
60 | | - "matchDepNames": ["quay.io/fedora/fedora"], |
| 66 | + "description": [ |
| 67 | + "Disable Fedora OCI updates" |
| 68 | + ], |
| 69 | + "matchManagers": [ |
| 70 | + "dockerfile" |
| 71 | + ], |
| 72 | + "matchDepNames": [ |
| 73 | + "quay.io/fedora/fedora" |
| 74 | + ], |
61 | 75 | "enabled": false |
62 | 76 | } |
63 | 77 | ] |
|
0 commit comments