Configure Renovate#5
Conversation
b78f87b to
e2cf7be
Compare
There was a problem hiding this comment.
Pull request overview
Adds a Renovate configuration file to onboard Renovate for this repository.
Changes:
- Introduces
renovate.jsonwith a schema reference.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json" | ||
| } |
There was a problem hiding this comment.
PR description/summary indicates this onboarding config should extend the shared preset local>enveda/renovate-config, but renovate.json currently only defines $schema and does not include any extends configuration. If the intent is to use the shared preset (and/or Renovate recommended defaults), add an extends entry accordingly so Renovate runs with the expected settings rather than implicit defaults.
| @@ -0,0 +1,3 @@ | |||
| { | |||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json" | |||
There was a problem hiding this comment.
renovate.json only sets $schema, which is valid JSON but effectively leaves Renovate behavior entirely to its global/default configuration. If you want to enable Renovate with predictable repo-local settings (e.g., scheduling, grouping, automerge policy, dependency dashboard), add at least a minimal config (such as extends + any repo-specific overrides) rather than an empty config file.
| "$schema": "https://docs.renovatebot.com/renovate-schema.json" | |
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | |
| "extends": ["config:recommended"], | |
| "dependencyDashboard": true |
Welcome to Renovate! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.
🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.
Detected Package Files
pyproject.toml(pep621)Configuration Summary
Based on the default config's presets, Renovate will:
fixfor dependencies andchorefor all others if semantic commits are in use.node_modules,bower_components,vendorand various test/tests (except for nuget) directories.github-actiondigests.majorversion of dependencies into individual branches/PRs.fixfor dependencies andchorefor all others if semantic commits are in use.node_modules,bower_components,vendorand various test/tests (except for nuget) directories.github-actiondigests.majorversion of dependencies into individual branches/PRs.🔡 Do you want to change how Renovate upgrades your dependencies? Add your custom config to
renovate.jsonin this branch and select the Retry/Rebase checkbox below. Renovate will update the Pull Request description the next time it runs.What to Expect
It looks like your repository dependencies are already up-to-date and no Pull Requests will be necessary right away.
❓ Got questions? Check out Renovate's Docs, particularly the Getting Started section.
If you need any further assistance then you can also request help here.
This PR has been generated by Renovate Bot.
Note
Add
renovate.jsonthat extendslocal>enveda/renovate-configto enable shared Renovate settings.Written by Cursor Bugbot for commit b78f87b. This will update automatically on new commits. Configure here.