Skip to content

Commit 7ef78e7

Browse files
authored
Merge pull request #1703 from srm09/add-dependabot
✨ Adds dependabot configuration
2 parents 5e5920c + e8415fc commit 7ef78e7

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Diff for: .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)