-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3015 from nawazkh/update_dependabot
Update dependabot.yml
- Loading branch information
Showing
1 changed file
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,35 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# Please see the documentation for all configuration options: https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# Dependencies listed in go.mod | ||
- package-ecosystem: "gomod" | ||
directory: "/" # Location of package manifests | ||
|
||
# github-actions | ||
- directory: "/" | ||
package-ecosystem: "github-actions" | ||
schedule: | ||
interval: "daily" ## change it to interval:"weekly" once Dependabot starts working. | ||
# day: "monday" | ||
interval: "daily" | ||
commit-message: | ||
include: "scope" | ||
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" | ||
include: scope | ||
labels: | ||
- "ok-to-test" | ||
- "kind/cleanup" | ||
- "priority/important-soon" | ||
- "wg/security-audit" | ||
# Dependencies listed in .github/workflows/*.yml | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
|
||
# Go | ||
- directory: "/" | ||
package-ecosystem: "gomod" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
interval: "daily" | ||
commit-message: | ||
include: "scope" | ||
include: scope | ||
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" | ||
labels: | ||
- "kind/cleanup" | ||
- "ok-to-test" | ||
- "ok-to-test" | ||
- "kind/cleanup" |