File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Please see the documentation for all configuration options:
2
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
1
3
version : 2
2
4
updates :
5
+ # GitHub Actions
3
6
- package-ecosystem : " github-actions"
4
7
directory : " /"
5
8
schedule :
@@ -8,13 +11,20 @@ updates:
8
11
prefix : " :seedling:"
9
12
labels :
10
13
- " ok-to-test"
14
+ # Go
11
15
- package-ecosystem : " gomod"
12
16
directory : " /"
13
17
schedule :
14
18
interval : " weekly"
15
- allow :
16
- - dependency-name : " github.com/coredns/corefile-migration"
19
+ ignore :
20
+ # Ignore controller-runtime as its upgraded manually.
21
+ - dependency-name : " sigs.k8s.io/controller-runtime"
22
+ # Ignore k8s and its transitives modules as they are upgraded manually
23
+ # together with controller-runtime.
24
+ - dependency-name : " k8s.io/*"
25
+ - dependency-name : " go.etcd.io/*"
26
+ - dependency-name : " google.golang.org/grpc"
17
27
commit-message :
18
28
prefix : " :seedling:"
19
29
labels :
20
- - " ok-to-test"
30
+ - " ok-to-test"
You can’t perform that action at this time.
0 commit comments