Skip to content
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

🌱 Add dependabot for test and hack/tools module #9041

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 43 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ updates:
labels:
- "area/ci"
- "ok-to-test"
# Go

# Main Go module
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not fridays? 🙃

Copy link
Member

@sbueringer sbueringer Jul 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can collect PRs during the week and then merge on Friday :)

ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
Expand All @@ -30,3 +32,43 @@ updates:
labels:
- "area/dependency"
- "ok-to-test"

# Test Go module
- package-ecosystem: "gomod"
directory: "/test"
schedule:
interval: "weekly"
day: "tuesday"
ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
commit-message:
prefix: ":seedling:"
labels:
- "area/dependency"
- "ok-to-test"

# Hack/tools Go module
- package-ecosystem: "gomod"
directory: "/hack/tools"
schedule:
interval: "weekly"
day: "wednesday"
ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
killianmuldoon marked this conversation as resolved.
Show resolved Hide resolved
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
commit-message:
prefix: ":seedling:"
labels:
- "area/dependency"
- "ok-to-test"
Loading