From 8a3848bde4bee36e8338393d379d989df1794b6b Mon Sep 17 00:00:00 2001 From: Tim Hopper Date: Tue, 4 Aug 2026 21:18:50 -0400 Subject: [PATCH] Add weekly scheduled build and Dependabot updates for uv lockfile The scheduled run exercises the full build without deploying (deploy steps are push-gated), so a breaking library release shows up as a red badge within a week instead of silently rotting. Dependabot groups Python bumps into one weekly PR that CI proves out. --- .github/dependabot.yml | 13 +++++++++++++ .github/workflows/deploy.yml | 4 ++++ 2 files changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0c01be5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "weekly" + groups: + python-dependencies: + patterns: ["*"] + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f75a3e2..da697eb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,6 +5,10 @@ on: branches: ['**'] pull_request: branches: [master] + schedule: + # Weekly build-health check; deploy steps only run on push events, + # so this catches library breakage without touching production. + - cron: '0 6 * * 1' jobs: build-and-deploy: