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 rule to bump CAPI Operator dependency as early as possible #392

Merged
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
15 changes: 14 additions & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,28 @@ updates:
patterns:
- "*"
ignore:
# Ignore Cluster-API as its upgraded manually.
# Ignore Cluster-API as its upgraded separately.
- dependency-name: "sigs.k8s.io/cluster-api"
- dependency-name: "sigs.k8s.io/cluster-api-operator"
# 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"
# Watch CAPI Operator changes daily for a timely version bump.
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
labels:
- "kind/cleanup"
- "area/dependency"
groups:
dependencies:
patterns:
- "sigs.k8s.io/cluster-api-operator"
# Test Go module
- package-ecosystem: "gomod"
directory: "/test"
Expand Down
Loading