Add Dependabot configuration - #76
Open
tas50 wants to merge 1 commit into
Open
Conversation
Enables weekly updates for two ecosystems: - github-actions, to keep the action versions pinned in .github/workflows current. - bundler, which picks up both the Gemfile and the development dependencies in dep-selector-libgecode.gemspec via the Gemfile's `gemspec` directive. Both are grouped so that a quiet week produces a single pull request rather than one per dependency. Note that the bundler half will stay quiet until it has something to act on: the gemspec declares bundler and rake with no version constraints, and Gemfile.lock is gitignored, so there is currently nothing for Dependabot to bump. Signed-off-by: Tim Smith <tsmith84@proton.me>
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.
Description
Adds
.github/dependabot.ymlenabling weekly updates for two ecosystems:github-actions— keeps the action versions pinned in.github/workflowscurrent.bundler— picks up both theGemfileand the development dependencies declared indep-selector-libgecode.gemspec, which Dependabot reads through the Gemfile'sgemspecdirective.Both are grouped with a
"*"pattern so a quiet week produces one pull request rather than one per dependency.Two caveats worth stating up front, since neither ecosystem will do much on merge:
The
bundlerhalf will stay silent until it has something to act on. The gemspec declaresbundlerandrakewith no version constraints, andGemfile.lockis gitignored, so there is currently nothing to bump. Pinning those development dependencies, or committing a lockfile, would give it something to work with — happy to do that in a separate PR if wanted.The
github-actionshalf has nothing to scan until a workflow exists. A CI workflow is proposed in a follow-up PR; merging this one first simply means the ecosystem sits idle until then.Neither is a reason to hold the config back — it is inert rather than wrong, and it starts working the moment either condition is met.
Issues Resolved
None filed.
Check List
Configuration-only change with no test surface. Validated as parseable YAML against the Dependabot v2 schema shape.