Draft
Dependabot batching: weekly schedules + grouped updates to reduce lockfile conflict churn#4806
Conversation
Co-authored-by: xiang17 <9310587+xiang17@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Reduce concurrency of dependency PRs to minimize conflicts
Dependabot batching: weekly schedules + grouped updates to reduce lockfile conflict churn
Jul 31, 2026
Co-authored-by: xiang17 <9310587+xiang17@users.noreply.github.com>
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.
Daily Dependabot runs with up to 10 concurrent PRs were generating many lockfile/license-touching PRs in parallel, creating persistent merge-conflict churn across open dependency PRs. This change reduces concurrency pressure by batching most updates while preserving isolation for high-churn/high-risk dependencies.
Main Gradle config (
directory: "/")weeklyonmondayopen-pull-requests-limitfrom10to5opentelemetrygroup (including semconv patterns)all-dependenciesgroup limited tominor/patchupdates, so major bumps remain isolated as individual PRsOther ecosystems aligned
github-actions("/"): switched to weekly and added catch-all groupinggradle("/perf-tests"): switched to weekly, reduced PR limit to 5, added catch-all minor/patch groupinggradle("/etw/etw-testapp"): switched to weekly, reduced PR limit to 5, added catch-all minor/patch groupingPreserved as-is
ignorerules and commentsregistriesconfigurationgradle-plugin-portalreferences on each Gradle update entryExample of the new grouping pattern (order-sensitive; OpenTelemetry first, catch-all second):
This targets the root cause (too many concurrent dependency PRs) rather than conflict-resolution automation. Tradeoff: grouped updates reduce immediate culprit isolation when a batch fails; mitigations are OpenTelemetry isolation and keeping major bumps separate. Configuration is straightforward to tune/revert if batching is too coarse.