Skip to content

Commit e8415fc

Browse files
committed
Adds dependabot config
Signed-off-by: Sagar Muchhal <[email protected]>
1 parent 48a9dac commit e8415fc

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/dependabot.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
version: 2
4+
updates:
5+
# GitHub Actions
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
commit-message:
11+
prefix: ":seedling:"
12+
labels:
13+
- "ok-to-test"
14+
# Go
15+
- package-ecosystem: "gomod"
16+
directory: "/"
17+
schedule:
18+
interval: "weekly"
19+
ignore:
20+
# Ignore k8s modules as they are upgraded manually
21+
# together with controller-runtime.
22+
- dependency-name: "k8s.io/*"
23+
- dependency-name: "sigs.k8s.io/controller-runtime"
24+
commit-message:
25+
prefix: ":seedling:"
26+
labels:
27+
- "ok-to-test"

0 commit comments

Comments
 (0)