-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathrenovate.json
42 lines (42 loc) · 1.02 KB
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":semanticCommits",
":semanticCommitScopeDisabled",
"docker:enableMajor",
"customManagers:dockerfileVersions",
":disableRateLimiting",
":ignoreUnstable",
":separateMultipleMajorReleases",
":updateNotScheduled"
],
"packageRules": [
{
"description": "Group OS packages to avoid build errors if more than one package is updated and previous version is not present in repo already",
"matchDatasources": [
"repology"
],
"groupName": "OS Packages"
},
{
"description": "Separate python minor releases",
"matchDatasources": [
"docker"
],
"matchPackageNames": [
"python"
],
"separateMultipleMinor": true,
"separateMinorPatch": true
}
],
"ignoreDeps": [
"ghcr.io/jh0ker/mau_mau_bot",
"ghcr.io/juniorjpdj/mau_mau_bot"
],
"baseBranches": [
"master"
],
"forkProcessing": "enabled"
}