Skip to content

Commit

Permalink
Add dependabot for test module
Browse files Browse the repository at this point in the history
Signed-off-by: killianmuldoon <kmuldoon@vmware.com>
  • Loading branch information
killianmuldoon committed Jul 21, 2023
1 parent de6aca7 commit 8b93871
Showing 1 changed file with 43 additions and 1 deletion.
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"
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/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
commit-message:
prefix: ":seedling:"
labels:
- "area/dependency"
- "ok-to-test"

0 comments on commit 8b93871

Please sign in to comment.