-
-
Notifications
You must be signed in to change notification settings - Fork 842
Expand file tree
/
Copy pathrenovate.json
More file actions
28 lines (28 loc) · 840 Bytes
/
renovate.json
File metadata and controls
28 lines (28 loc) · 840 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
27
28
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "Europe/Madrid",
"schedule": ["after 7pm every weekday", "before 5am every weekday"],
"packageRules": [
{
"description": "Do not bump python-version in AI flag cleanup workflow",
"matchManagers": ["github-actions"],
"matchDepNames": ["python"],
"matchFileNames": [".github/workflows/ai-flag-cleanup-pr.yml"],
"enabled": false
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["*"],
"automerge": true,
"minimumReleaseAge": "7 days",
"internalChecksFilter": "strict"
}
],
"ignoreDeps": [
"react-router-dom",
"docusaurus-plugin-openapi-docs",
"docusaurus-theme-openapi-docs"
],
"labels": ["dependencies"]
}