Skip to content

Commit 0ceaabb

Browse files
authored
Configure Renovate to update uv.lock unpinned dependencies (#832)
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 0ceaabb

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/renovate.json

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

.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)