Configure dependabot bundler updates - #724
Merged
Merged
Conversation
Tracks [AINFRA-2437](https://linear.app/a8c/issue/AINFRA-2437). Adds a Dependabot config that opens a daily bundler PR for the gem's Ruby dependencies, with minor and patch bumps grouped under `ruby-minor-and-patch` and the PR limit capped at 5. The repo is the release-toolkit gem itself, so this configures updates for its own development and runtime dependencies — it does not consume RT. --- Generated with the help of Claude Code, https://code.claude.com Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Sets up GitHub Dependabot to automatically check and propose updates for Bundler (Ruby) dependencies on a daily cadence, with grouping for minor/patch bumps to reduce PR noise.
Changes:
- Add
.github/dependabot.ymlto enable daily Bundler dependency checks with aruby-minor-and-patchgroup for minor/patch updates. - Record the Dependabot configuration change in
CHANGELOG.mdunder Trunk → Internal Changes.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
CHANGELOG.md |
Adds a Trunk/Internal Changes entry documenting the new Dependabot setup. |
.github/dependabot.yml |
Introduces Dependabot configuration for daily Bundler dependency update PRs with grouping and a PR limit. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ### Internal Changes | ||
|
|
||
| - `openai_ask`: validate named function tools, default to `gpt-4.1`, use `max_completion_tokens`, and opt out of OpenAI request storage. [#719] | ||
| - Configure Dependabot to update Ruby dependencies daily, grouping minor/patch bumps under `ruby-minor-and-patch`. |
--- Generated with the help of Claude Code, https://code.claude.com Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
Author
twstokes
approved these changes
May 27, 2026
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.
What does it do?
Sets up Dependabot to check Ruby dependencies daily so we can more easily address security updates. See AINFRA-2437.
Checklist before requesting a review
bundle exec rubocopto test for code style violations and recommendations. — n/a, YAML-only change.specs/*_spec.rb) if applicable. — n/a, the dependabot config is consumed by GitHub, not the repo's CI.bundle exec rspecto run the whole test suite and ensure all your tests pass. — n/a, no Ruby changes.CHANGELOG.mdfile to describe your changes under the appropriate existing###subsection of the existing## Trunksection.MIGRATION.mdfile. — n/a, no breaking changes.Test plan
Dependabot config is consumed by GitHub, not the repo's CI. YAML validation passes (
yq . .github/dependabot.yml).Posted by Claude (Opus 4.7, 1M context) on behalf of @mokagio with approval.