File tree Expand file tree Collapse file tree 2 files changed +47
-5
lines changed Expand file tree Collapse file tree 2 files changed +47
-5
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,13 @@ updates:
8
8
#
9
9
# Maintainers can continue to look at the log in
10
10
# https://github.com/kubernetes-sigs/cluster-api/network/updates/
11
- open-pull-requests-limit : 0
11
+ open-pull-requests-limit : 1
12
12
directory : " /"
13
13
schedule :
14
- interval : " daily "
14
+ interval : " weekly "
15
15
commit_message :
16
16
prefix : " 🌱"
17
17
18
- # Weekly updates for everything else
19
18
- package-ecosystem : " docker"
20
19
directory : " /"
21
20
schedule :
@@ -32,15 +31,15 @@ updates:
32
31
33
32
- package-ecosystem : " gomod"
34
33
directory : " /hack/tools"
35
- open-pull-requests-limit : 0
34
+ open-pull-requests-limit : 1
36
35
schedule :
37
36
interval : " weekly"
38
37
commit_message :
39
38
prefix : " 🌱"
40
39
41
40
- package-ecosystem : " gomod"
42
41
directory : " /test"
43
- open-pull-requests-limit : 0
42
+ open-pull-requests-limit : 1
44
43
schedule :
45
44
interval : " weekly"
46
45
commit_message :
Original file line number Diff line number Diff line change
1
+ name : dependabot
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - dependabot/**
7
+ push :
8
+ branches :
9
+ - dependabot/**
10
+ workflow_dispatch :
11
+
12
+ jobs :
13
+ build :
14
+ name : Build
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Set up Go 1.x
18
+ uses : actions/setup-go@v2
19
+ with :
20
+ go-version : ' 1.16'
21
+ id : go
22
+ - name : Check out code into the Go module directory
23
+ uses : actions/checkout@v2
24
+ - uses : actions/cache@v2
25
+ name : Restore go cache
26
+ with :
27
+ path : |
28
+ ~/.cache/go-build
29
+ ~/go/pkg/mod
30
+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
31
+ restore-keys : |
32
+ ${{ runner.os }}-go-
33
+ - name : Update all modules
34
+ run : make modules
35
+ - name : Update generated code
36
+ run : make generate
37
+ - uses : EndBug/add-and-commit@v7
38
+ name : Commit changes
39
+ with :
40
+ author_name : dependabot[bot]
41
+ author_email : 49699333+dependabot[bot]@users.noreply.github.com
42
+ default_author : github_actor
43
+ message : ' Update generated code'
You can’t perform that action at this time.
0 commit comments