-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
56 lines (56 loc) · 1.44 KB
/
default.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"extends": [
"config:base",
":semanticCommits",
":semanticCommitTypeAll(chore)",
"helpers:pinGitHubActionDigests"
],
"schedule": "every 4th week on Thursday before 10am",
"automerge": true,
"automergeType": "branch",
"lockFileMaintenance": {
"enabled": false
},
"masterIssue": true,
"rangeStrategy": "update-lockfile",
"enabledManagers": ["github-actions", "poetry", "regex"],
"useBaseBranchConfig": "merge",
"addLabels": ["dependencies"],
"packageRules": [
{
"matchUpdateTypes": ["major"],
"automerge": false,
"semanticCommitType": "fix"
},
{
"matchDepTypes": ["dev-dependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"],
"groupName": "dev dependencies",
"rangeStrategy": "bump",
"semanticCommitType": "chore"
},
{
"matchManagers": ["github-actions"],
"groupName": "actions",
"rangeStrategy": "auto",
"semanticCommitType": "chore"
},
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "minor updates"
},
{
"matchUpdateTypes": ["minor"],
"matchPackageNames": ["python", "conda-forge/python"],
"groupName": "python",
"rangeStrategy": "widen",
"semanticCommitType": "fix"
},
{
"matchPackagePatterns": ["^ampel-.*"],
"schedule": null,
"groupName": "ampel packages",
"rangeStrategy": "bump"
}
]
}