dependabot: group uv dev tooling and runtime patch/minor bumps - #1214
Open
potiuk wants to merge 1 commit into
Open
dependabot: group uv dev tooling and runtime patch/minor bumps#1214potiuk wants to merge 1 commit into
potiuk wants to merge 1 commit into
Conversation
Five separate PRs landed on 2026-08-28 (apache#1208-apache#1212) for ruff, mypy and types-pyyaml across /pelican and /stash. They are all PEP 735 dev-group tooling that never ships in the published action, so reviewing them one per tool buys nothing. Dependabot opens one PR per directory per group, so this collapses them to one per directory. Runtime dependencies are grouped for patch and minor only - a major bump of something the action ships stays outside every group and keeps its own PR. The allow-list ecosystem stays ungrouped and now says why in a comment. Generated-by: Claude Code (Opus 5)
potiuk
force-pushed
the
dependabot-group-uv-deps
branch
from
August 28, 2026 16:05
5303cc4 to
c91756b
Compare
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.
Code change
Summary
Grouping was already in place for
github/codeql-action*, but theuvecosystem had none - so five separate PRs landed today (#1208-#1212) for ruff, mypy and types-pyyaml across/pelicanand/stash. All five are PEP 735devgroup tooling that never ships in the published action, so one PR per tool buys no review value.dev-toolinggroup (dependency-type: development,patterns: ["*"]) - collects the lint/test tooling. Dependabot opens one PR per directory per group, so today's five become two.runtime-minor-patchgroup (dependency-type: production, minor + patch only) - keeps routine runtime bumps together.verifyrun, so grouping would tie an action that fails verification to unrelated ones that passed.Dependabot classifies these correctly today - #1155 (
markdown) reportsdependency-type: direct:productionand #1190 (ruff) reportsdirect:development- so both groups match what is already being emitted.Type of change
Testing
.github/dependabot.ymlparses and resolves to the three expected ecosystems with the intended group keys.prek run --all-filesclean.uvrun.Drafted-by: Claude Code (Opus 5); reviewed by @potiuk before posting