chore(dependabot): Extend depdentbot to cover release-1.4 branch#2526
Merged
susanshi merged 2 commits intoMay 26, 2026
Merged
Conversation
Duplicate each updates entry with target-branch: release-1.4 so Dependabot opens dependency-update PRs against the release-1.4 maintenance branch in addition to main. Adds a 'release-1.4' label to the new entries for easy filtering. Signed-off-by: charleswool <charleswool@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds Dependabot support for maintaining dependencies on the release-1.4 branch alongside the default branch.
Changes:
- Introduces a dedicated
release-1.4section withtarget-branchfor multiple ecosystems. - Configures labels and commit message prefixes for release-branch dependency PRs.
- Restricts Go module updates on
release-1.4to patch-only by ignoring semver major/minor bumps.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| directory: "/" | ||
| target-branch: "release-1.4" | ||
| schedule: | ||
| interval: "daily" |
Contributor
There was a problem hiding this comment.
the below schedules seem all weekly
susanshi
approved these changes
May 20, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2526 +/- ##
=======================================
Coverage 77.10% 77.10%
=======================================
Files 105 105
Lines 4657 4657
=======================================
Hits 3591 3591
Misses 917 917
Partials 149 149 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
lgtm for others |
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 this PR does
Extends
.github/dependabot.ymlso Dependabot opens dependency-update PRs against therelease-1.4maintenance branch in addition tomain.Dependabot only supports a single
target-branchperupdates:entry, so each of the existing ecosystem blocks (github-actions, gomod, docker/, docker/httpserver, docker/.devcontainer) is duplicated withtarget-branch: release-1.4. The sameignorerules are preserved on the release branch (no semver-major/minor gomod bumps; Go pinned at 1.22).A
release-1.4label is added on those entries so the resulting PRs are easy to filter / triage.Why
The
release-1.4branch is an active maintenance line but currently receives no automated dependency/CVE-fix PRs from Dependabot, so security and bug-fix backports have to be done manually. This change keeps it in sync automatically.Notes
main); thetarget-branchfield is what controls where the resulting PRs are opened — so no changes torelease-1.4itself are required.schedule.intervalon therelease-1.4entries can later be relaxed (e.g. monthly) independently.Signed-off-by: charleswool charleswool@users.noreply.github.com