ci: switch dependency updates from Dependabot to Renovate#809
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Switches this repository’s automated dependency update mechanism from GitHub Dependabot (version updates) to Mend Renovate, aligning update grouping and branch targeting rules while enabling Renovate-native automerge/rebase behavior.
Changes:
- Add Renovate configuration under
.github/renovate.json(grouping npm + GitHub Actions updates, minor-only automerge, rebase-when-behind behavior). - Remove the existing
.github/dependabot.ymlto stop Dependabot version-update PRs.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/renovate.json | Introduces Renovate rules for base branches, grouping, minor-only automerge, and rebase behavior. |
| .github/dependabot.yml | Removes Dependabot version update configuration as part of the migration to Renovate. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Replace dependabot.yml with a Renovate config that mirrors the existing rules (base branches, maintenance-branch restrictions, groupings) and adds what Dependabot could not do natively: auto-merge of minor updates once CI is green, and rebasing PRs whenever they fall behind the base branch. Commit type is pinned to chore(deps) so dependency bumps never trigger a semantic-release. Renovate runs as a GitHub App with its own push identity, so rebases re-trigger CI and merges fire downstream workflows (both impossible with the GITHUB_TOKEN-based workflow). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
25eae5e to
2346ecf
Compare
|
Released in |
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
Switches dependency updates from Dependabot to Mend Renovate, mirroring the existing
dependabot.ymlrules and adding what Dependabot could not do with the defaultGITHUB_TOKEN:automerge: trueonmatchUpdateTypes: ["minor"]) — native, no branch protection or custom workflow needed.rebaseWhen: behind-base-branch) — rebases come from the Renovate App's own identity, so CI re-runs (aGITHUB_TOKENbranch update would not re-trigger workflows, and@dependabot rebaseis rejected from the Actions bot).Rule translation
dependabot.yml(patch-only on stable maintenance branches where that was configured; package pins preserved).:semanticCommitTypeAll(chore)pins all Renovate commits/PR titles tochore(deps): …. This matters: Renovate's default usesfix(deps)for prod dependencies, which would trigger semantic-release patch releases.vulnerabilityAlertsdisabled in Renovate (same as camunda-7-to-8-migration-tooling) — GitHub's Dependabot security updates remain the CVE path; only Dependabot version PRs stop.dependabot-auto-merge.ymlworkflow is removed — Renovate's native automerge replaces it.Prerequisites / rollout
Flagged for reviewers
["minor", "patch"]).scheduleblock if the cadence matters.🤖 Generated with Claude Code