Reduce Frequence of Renovate Updates for Development Dependencies (#5044)

This commit is contained in:
Bibo-Joshi
2025-11-08 22:07:51 +01:00
committed by GitHub
parent 468f169be6
commit 1fd084cb9c
2 changed files with 16 additions and 1 deletions
+12 -1
View File
@@ -62,6 +62,17 @@
{
"matchDepTypes": ["project.optional-dependencies", "project.dependencies"],
"labels": ["⚙️ dependencies"]
},
// Workflow and dev-dependencies update once a month
// https://docs.renovatebot.com/presets-schedule/#schedulemonthly
{
"matchFileNames": [".github/workflows/**"],
"schedule": ["* 0-3 1 * *"]
},
{
"matchDepTypes": ["dependency-groups"],
"schedule": ["* 0-3 1 * *"]
}
],
@@ -72,6 +83,6 @@
"ignoreDeps": ["pytest-asyncio"],
// schedule to allow PR's from Renovate:
"schedule": ["* * * * 0,6"] // Every weekend
"schedule": ["* * * * 0"] // Every Sunday
}
@@ -0,0 +1,4 @@
internal = "Reduce Frequence of Renovate Updates for Development Dependencies"
[[pull_requests]]
uid = "5044"
author_uids = ["Bibo-Joshi"]