ci: security-only Dependabot + weekly poetry.lock updates - #357
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #357 +/- ##
=======================================
Coverage 92.93% 92.93%
=======================================
Files 6 6
Lines 439 439
=======================================
Hits 408 408
Misses 31 31
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
blink1073
enabled auto-merge (squash)
August 3, 2026 11:12
blink1073
disabled auto-merge
August 3, 2026 11:20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
References
Description
Splits dependency updates into two lanes: Dependabot now handles security
fixes only (low noise, high signal), and a new weekly workflow batches
routine
poetry.lockversion bumps into one PR. Pattern perhttps://gist.github.com/blink1073/4c4792b1ae70bdc57ccafaa7ad889f88.
Changes
pyproject.toml's[dependency-groups].typing(was mixing a table entry with plain strings) — this is the exact pattern
that crashes Dependabot's Poetry resolver (toml-rb), so it had to be split
into homogeneous groups (
typing-extra+typing) before the security-onlylane could be trusted to keep working.
uv.lock(nothing in the repo referenced it; Poetry is theactual dependency manager here).
open-pull-requests-limit: 0to thepipentry in.github/dependabot.yml, restricting it to security-triggered PRs only..github/workflows/lock-update.yml: a weekly (Monday 6am UTC) +manually-dispatchable workflow that runs
poetry update --lockunder a7-day minimum release-age cooldown and opens a single PR (labeled
maintenance) ifpoetry.lockchanged. Modeled on the existingpre-commit-autoupdate.ymlworkflow's conventions (samereleaseenvironment, checkout pin, fork guard,
persist-credentials: false).Backwards-incompatible changes
None
Testing
just pre-commit— all hooks passjust typing— mypy cleanjust test— 174/174 passingenabled and no in-flight Dependabot PR is dropped by this change
(
gh pr list --author app/dependabotreturns none currently open)AI usage