-
Notifications
You must be signed in to change notification settings - Fork 130
Add Renovate configuration for automated dependency management #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
WalkthroughAdds a new GitHub Actions workflow Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Dev as Developer
participant GH as GitHub Actions
participant Repo as Repository
participant Renovate as Renovate Action
participant GHAPI as GitHub API
rect rgb(240,248,255)
note over Dev,GH: Triggers
Dev->>GH: workflow_dispatch (optional debug) or cron (Mon 00:00)
end
GH->>Repo: actions/[email protected]
GH->>Renovate: renovatebot/[email protected]\n(env: LOG_LEVEL, RENOVATE_REPOSITORIES, RENOVATE_COMMIT_MESSAGE_SUFFIX, RENOVATE_LABELS, RENOVATE_DEPENDENCY_DASHBOARD_LABELS, RENOVATE_EXTENDS, RENOVATE_PLATFORM)
Renovate->>GHAPI: Inspect repo & dependencies
alt Updates found
Renovate->>GHAPI: Create/Update PRs (labels: dependencies)
else No updates
Renovate-->>GH: Exit successfully
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
.github/workflows/renovate.yml(1 hunks)renovate.json(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: Lint, test, and build the code (ubuntu-24.04, linux/amd64)
- GitHub Check: Lint, test, and build the code (ubuntu-24.04-arm, linux/arm64)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/renovate.yml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: Lint, test, and build the code (ubuntu-24.04, linux/amd64)
- GitHub Check: Lint, test, and build the code (ubuntu-24.04-arm, linux/arm64)
Introduce Renovate configuration files to automate dependency updates and management, enhancing project maintenance and security.
Before merging ensure you have a finegrained token named RENOVATE_TOKEN in your secrets with theses permissions
docs.renovatebot.com/modules/platform/github#permissions
Summary by CodeRabbit