File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,12 @@ updates:
3
3
- package-ecosystem : " github-actions"
4
4
directory : " /"
5
5
schedule :
6
- interval : weekly
6
+ interval : daily
7
7
reviewers :
8
8
- " nginxinc/kic"
9
- - " ciarams87"
10
9
- package-ecosystem : " docker"
11
10
directory : " /docker"
12
11
schedule :
13
- interval : weekly
12
+ interval : daily
14
13
reviewers :
15
14
- " nginxinc/kic"
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ categories:
16
16
- title : ' 🔨 Maintenance'
17
17
labels :
18
18
- " chore"
19
+ - title : ' ⬆️ Dependencies'
20
+ labels :
19
21
- " dependencies"
20
22
version-resolver :
21
23
major :
@@ -53,11 +55,12 @@ autolabeler:
53
55
- ' /enhancement\/.+/'
54
56
- ' /feat\/.+/'
55
57
- ' /feature\/.+/'
58
+ title :
59
+ - ' /feat/i'
56
60
- label : ' dependencies'
57
61
files :
58
62
- ' go.mod'
59
63
- ' go.sum'
60
- - ' vendor*'
61
64
branch :
62
65
- ' /deps\/.+/'
63
66
template : |
Original file line number Diff line number Diff line change 27
27
28
28
build :
29
29
name : Build Client
30
- runs-on : ubuntu-18 .04
31
- if :
30
+ runs-on : ubuntu-20 .04
31
+ if :
32
32
github.event.pull_request.head.repo.full_name == 'nginxinc/nginx-plus-go-client' ||
33
33
github.event_name == 'push'
34
34
steps :
59
59
60
60
notify :
61
61
name : Notify
62
- runs-on : ubuntu-18 .04
62
+ runs-on : ubuntu-20 .04
63
63
needs : build
64
64
if : always() && github.ref == 'refs/heads/master'
65
65
steps :
73
73
echo "::set-output name=repo::$(echo ${GITHUB_REPOSITORY} | cut -d '/' -f 2)"
74
74
- name : Send Notification
75
75
uses : 8398a7/action-slack@v3
76
- if :
77
- steps.check.outputs.status == 'failure' ||
76
+ if :
77
+ steps.check.outputs.status == 'failure' ||
78
78
steps.check.outputs.status == 'cancelled'
79
79
with :
80
80
status : custom
@@ -110,4 +110,4 @@ jobs:
110
110
}
111
111
env :
112
112
GITHUB_TOKEN : ${{ github.token }}
113
- SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK }}
113
+ SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK }}
Original file line number Diff line number Diff line change @@ -17,19 +17,17 @@ defaults:
17
17
shell : bash
18
18
19
19
env :
20
- GOLANGCI_VERSION : 1.29
21
20
GOLANGCI_TIMEOUT : 10m0s
22
21
23
22
jobs :
24
23
25
24
lint :
26
25
name : Lint
27
- runs-on : ubuntu-18 .04
26
+ runs-on : ubuntu-20 .04
28
27
steps :
29
28
- name : Checkout Repository
30
29
uses : actions/checkout@v2
31
30
- name : Lint Code
32
- uses : golangci/golangci-lint-action@v2.5.2
31
+ uses : golangci/golangci-lint-action@v2
33
32
with :
34
- version : ' v${{ env.GOLANGCI_VERSION }}'
35
33
args : --timeout ${{ env.GOLANGCI_TIMEOUT }} --issues-exit-code=0 ./client/...
You can’t perform that action at this time.
0 commit comments