-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate-config.json5
97 lines (97 loc) · 2.57 KB
/
renovate-config.json5
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
// see https://docs.renovatebot.com/configuration-options
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"branchNameStrict": true, // remove special characters from branch names
"commitMessageAction": "Bump", // Bump is more similar to dependabot
"configMigration": true, // allow renovate to open PRs to update config
"constraintsFiltering": "strict", // ensure dependencies are compatible with dependency constraints
"description": "Default renovate configuration for LizardByte repositories",
"extends": [
"config:recommended",
"group:recommended",
],
"dependencyDashboard": true, // Creates an issue with a "dashboard" of dependencies
"dependencyDashboardLabels": [
"dependencies"
],
"labels": [
"dependencies",
"{{category}}"
],
"prConcurrentLimit": 10,
"rollbackPrs": true, // create a rollback PR when a dependency is yanked
"schedule": [
"after 1am",
"before 6am"
],
"semanticCommitScope": "deps",
"semanticCommitType": "build",
"semanticCommits": "enabled",
"timezone": "America/New_York",
"updatePinnedDependencies": true,
// beta features
"git-submodules": {
"enabled": true
},
// group/package rules
"packageRules": [
// Group GitHub maintained actions
{
"groupName": "Official GitHub Actions",
"groupSlug": "github-actions",
"matchManagers": [
"github-actions"
],
"matchPackageNames": [
"actions/**",
"github/**"
],
},
// combine LizardByte/plexhints and pypi plexhints into a single group
{
"groupName": "plexhints",
"matchCategories": [
"ci",
"python",
],
"matchPackageNames": [
"LizardByte/plexhints",
"plexhints",
],
},
// combine oddstr13/jellyfin-plugin-repository-manager and pypi jprm into a single group
{
"groupName": "jprm",
"matchCategories": [
"ci",
"python",
],
"matchPackageNames": [
"oddstr13/jellyfin-plugin-repository-manager",
"jprm",
],
},
// combine plexapi and plexapi-backport into a single group
{
"groupName": "plexapi",
"matchCategories": [
"python",
],
"matchPackageNames": [
"plexapi",
"plexapi-backport",
],
},
// remaining LizardByte actions
{
"groupName": "LizardByte GitHub Actions",
"groupSlug": "lizardbyte-gh-actions",
"matchManagers": [
"github-actions"
],
"matchPackageNames": [
"LizardByte/**"
],
},
],
}