Skip to content

Commit

Permalink
exclude go modules for dependbot (#1136)
Browse files Browse the repository at this point in the history
Signed-off-by: Prajyot-Parab <[email protected]>
  • Loading branch information
Prajyot-Parab authored Mar 2, 2023
1 parent df23e9a commit 7145288
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,35 @@ updates:
directory: "/"
schedule:
interval: "daily"
ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore cluster-api as its upgraded manually.
- dependency-name: "sigs.k8s.io/cluster-api/*"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "github.com/onsi/*"
labels:
- "ok-to-test"

# Enable version updates for Go tools
- package-ecosystem: "gomod"
directory: "/hack/tools"
schedule:
interval: "weekly"
ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime/*"
# Ignore cluster-api as its upgraded manually.
- dependency-name: "sigs.k8s.io/cluster-api/*"
- dependency-name: "sigs.k8s.io/controller-tools"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "github.com/onsi/*"
labels:
- "ok-to-test"

- package-ecosystem: "docker"
directory: "/"
Expand Down

0 comments on commit 7145288

Please sign in to comment.