forked from GoogleCloudPlatform/python-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
26 lines (26 loc) · 682 Bytes
/
renovate.json
File metadata and controls
26 lines (26 loc) · 682 Bytes
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
{
"extends": [
"config:base"
],
"prConcurrentLimit": 0,
"rebaseWhen": "never",
"masterIssue": true,
"poetry": {
"fileMatch": ["pyproject.toml"]
},
"pip_requirements": {
"fileMatch": ["requirements-test.txt", "requirements-composer.txt", "constraints.txt", "constraints-test.txt"]
},
"ignorePaths" : ["composer/**/constraints.txt", "composer/blog/**/constraints.txt", "composer/airflow_1_samples/requirements.txt", "appengine/standard"],
"packageRules": [
{
"packagePatterns": ["pytest"],
"separateMinorPatch": true
},
{
"packagePatterns": ["pytest"],
"updateTypes": ["patch"],
"enabled": false
}
]
}