-
Notifications
You must be signed in to change notification settings - Fork 37
dependabot: add config #256
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: master
Are you sure you want to change the base?
Conversation
|
Hi @sebrandon1. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
77158a0 to
c05d551
Compare
|
/ok-to-test |
|
@sebrandon1 Does this need to add GitHub actions? Or, the dependabot can live off with actual GH Action runners too? |
c05d551 to
83b1b7e
Compare
WalkthroughAdds a new Dependabot configuration file ( Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro Cache: Disabled due to data retention organization setting Knowledge base: Disabled due to 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
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 |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: sebrandon1 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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: 0
🧹 Nitpick comments (4)
.github/dependabot.yml (4)
1-3: FYI: No extra GitHub Actions are required for Dependabot to run.Dependabot runs as a GitHub service. You only need Actions if you want CI to validate its PRs.
8-11: Stabilize cadence and add helpful metadata for Actions updates.Set a fixed day/time/timezone and add commit prefix/labels to streamline triage.
- package-ecosystem: github-actions directory: / schedule: - interval: weekly + interval: weekly + day: monday + time: "06:10" + timezone: "Etc/UTC" + commit-message: + prefix: "deps(actions):" + labels: + - dependencies + - area/ci + groups: + gha-minor-patch: + update-types: + - "minor" + - "patch"
12-15: If images come from private registries, wire Dependabot registries.Without credentials, Dependabot may not resolve Red Hat or private images. Add registries and reference them here.
- package-ecosystem: docker directory: / schedule: - interval: weekly + interval: weekly + day: monday + time: "06:20" + timezone: "Etc/UTC" + registries: + - redhat + - quay + groups: + docker-minor-patch: + update-types: + - "minor" + - "patch" + +registries: + redhat: + type: docker-registry + url: registry.access.redhat.com + username: "${{secrets.DEPENDABOT_RH_USER}}" + password: "${{secrets.DEPENDABOT_RH_TOKEN}}" + quay: + type: docker-registry + url: quay.io + username: "${{secrets.DEPENDABOT_QUAY_USER}}" + password: "${{secrets.DEPENDABOT_QUAY_TOKEN}}"Please confirm whether this repo pulls from registry.access.redhat.com or private Quay orgs so we can finalize secret names.
4-7: Limit Dependabot gomod to direct deps; group minor/patch updates and set schedule/PR limits.Confirmed single go.mod at repo root — apply to .github/dependabot.yml (replace snippet at lines 4–7):
- package-ecosystem: gomod directory: / schedule: - interval: weekly + interval: weekly + day: monday + time: "06:00" + timezone: "Etc/UTC" + open-pull-requests-limit: 10 + allow: + - dependency-type: direct + groups: + go-minor-patch: + update-types: + - "minor" + - "patch"
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Cache: Disabled due to data retention organization setting
Knowledge base: Disabled due to Reviews -> Disable Knowledge Base setting
📒 Files selected for processing (1)
.github/dependabot.yml(1 hunks)
🔇 Additional comments (1)
.github/dependabot.yml (1)
1-15: Baseline config is valid and a good starting point.Version, ecosystems, and root directories look correct. This will work as‑is.
83b1b7e to
942e95d
Compare
|
@sebrandon1: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Help manage dependencies in the repo automatically on a
weeklycadence.All this does is open up PRs for review with their respective changes.
Similar to: