2 parents 687eb6a + 8a3848b commit dcd19b7Copy full SHA for dcd19b7
2 files changed
.github/dependabot.yml
@@ -0,0 +1,13 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "uv"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ groups:
8
+ python-dependencies:
9
+ patterns: ["*"]
10
+ - package-ecosystem: "github-actions"
11
12
13
+ interval: "monthly"
.github/workflows/deploy.yml
@@ -5,6 +5,10 @@ on:
branches: ['**']
pull_request:
branches: [master]
+ # Weekly build-health check; deploy steps only run on push events,
+ # so this catches library breakage without touching production.
+ - cron: '0 6 * * 1'
jobs:
14
build-and-deploy:
0 commit comments