Skip to content

Commit 726f260

Browse files
committed
Configure Renovate to update uv.lock unpinned dependencies
As discussed in `uv` PR: * `uv.lock` pins the git commit hashes used when pulling `django-stubs`/`django-stubs-ext`. But if there's an incompatible change in there, we want to know of it. * Configured Renovate to update these daily (we'll see, maybe that's too frequent). * If the "test" GitHub workflow passes, Renovate will auto-merge. Otherwise it will open a PR.
1 parent 853cad2 commit 726f260

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/renovate.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"dependencyDashboard": false,
3+
"lockFileMaintenance": {
4+
"enabled": true,
5+
"schedule": ["* 3-4 * * *"],
6+
"automerge": true
7+
},
8+
"packageRules": [
9+
{
10+
"enabled": false
11+
}
12+
]
13+
}

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
- "renovate/**"
78
pull_request:
89
workflow_dispatch:
910
schedule:

0 commit comments

Comments
 (0)