Fix Dependabot config to cover all benchmark subdirectories - #1527
Merged
ChrisRackauckas merged 1 commit intoMar 26, 2026
Merged
Conversation
The previous Dependabot config only covered /, /docs, and /test directories, missing all 37 benchmark subdirectories under benchmarks/. This meant no compat updates were being generated for benchmark packages after CompatHelper was removed in PR SciML#1434. This adds all benchmark directories to the Dependabot Julia ecosystem config. With the existing group pattern, each directory produces its own PR (one PR per benchmark set). Also increases open-pull-requests-limit to 40 to accommodate the additional directories. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.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.
Summary
/,/docs, and/test, missing all 37 benchmark subdirectories. This means no compat updates have been generated for benchmark packages since CompatHelper was removed in Add Julia ecosystem to Dependabot configuration #1434.benchmarks/*directories to the Dependabot Julia ecosystem configall-julia-packagesgroup (pattern"*"), Dependabot will create one PR per directory — giving separate PRs per benchmark set as desiredopen-pull-requests-limitfrom default 5 to 40 to accommodate all directoriesWhy Dependabot over CompatHelper?
Dependabot can handle this — the
directorieskey processes each directory independently, and the group pattern bundles all dependency updates within each directory into a single PR. This replicates what CompatHelper was doing (scanning allbenchmarks/*/Project.tomlfiles) while using GitHub's built-in tooling.The one caveat is that Dependabot's Julia ecosystem support is still in beta (
enable-beta-ecosystems: true). If it proves unreliable, reverting to CompatHelper remains an option.Note
There are still 6 stale CompatHelper PRs open (#1432, #1411, #1345, #1268, #1195, #1194) that could be closed.
🤖 Generated with Claude Code