Skip to content

Commit 9ebfae5

Browse files
committed
fix: use array of strings for descriptions
Signed-off-by: Robert Sturla <[email protected]>
1 parent 88209c4 commit 9ebfae5

File tree

1 file changed

+33
-19
lines changed

1 file changed

+33
-19
lines changed

renovate-shared-config.json

Lines changed: 33 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,61 +3,75 @@
33
"extends": [
44
// Base configuration
55
"config:best-practices",
6-
76
// Add "Signed-off-by" footer to commit messages
87
":gitSignOff",
9-
108
// Catch-all for grouping dependencies not caught by other groups
119
"group:all"
1210
],
13-
1411
// Rebase when there are merge conflicts
1512
//
1613
// The "conflicted" option is typically the ideal choice for most situations
1714
// where you don't want to burn CI credits, while still keeping your branch
1815
// in a mergeable state at all times.
1916
"rebaseWhen": "conflicted",
20-
2117
"packageRules": [
2218
// Group GitHub Actions dependencies
2319
{
24-
"description": "GitHub Actions dependencies",
25-
"matchManagers": ["github-actions"],
20+
"description": [
21+
"GitHub Actions dependencies"
22+
],
23+
"matchManagers": [
24+
"github-actions"
25+
],
2626
"groupName": "GitHub Actions",
2727
"enabled": true
2828
},
29-
3029
// Group Rust dependencies
3130
{
32-
"description": "Rust dependencies",
33-
"matchManagers": ["cargo"],
31+
"description": [
32+
"Rust dependencies"
33+
],
34+
"matchManagers": [
35+
"cargo"
36+
],
3437
"groupName": "Rust",
3538
"enabled": true
3639
},
37-
3840
// Group Docker dependencies
3941
{
40-
"description": "Docker dependencies",
41-
"matchManagers": ["dockerfile"],
42+
"description": [
43+
"Docker dependencies"
44+
],
45+
"matchManagers": [
46+
"dockerfile"
47+
],
4248
"groupName": "Docker",
4349
"enabled": true
4450
},
45-
4651
// Disable Containerfile digest pinning
4752
{
48-
"description": "Containerfile digest pinning",
49-
"matchManagers": ["dockerfile"],
53+
"description": [
54+
"Containerfile digest pinning"
55+
],
56+
"matchManagers": [
57+
"dockerfile"
58+
],
5059
"pinDigests": false
5160
},
52-
5361
// Disable Fedora OCI updates
5462
//
5563
// This is due to there not being an easy way to tell Renovate which
5664
// Fedora version is "stable" and which has not been released yet.
5765
{
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+
],
6175
"enabled": false
6276
}
6377
]

0 commit comments

Comments
 (0)