generated from meshery/meshery-istio
-
Notifications
You must be signed in to change notification settings - Fork 34
63 lines (58 loc) · 2.19 KB
/
error-ref-publisher.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Meshkit Error Codes Utility Runner
on:
push:
branches:
- 'master'
paths:
- '**.go'
jobs:
Update-error-codes:
name: Error codes utility
if: github.repository == 'meshery/meshery-app-mesh'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
# token here with write access to meshery-app-mesh repo
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}
ref: 'master'
- name: Setup Go
uses: actions/setup-go@master
with:
go-version: 1.19
- name: Run utility
run: |
go get github.com/layer5io/meshkit/cmd/errorutil
go run github.com/layer5io/meshkit/cmd/errorutil -d . update --skip-dirs meshery -i ./helpers -o ./helpers
# to update errorutil* files in meshery-app-mesh repo
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_user_name: l5io
commit_user_email: [email protected]
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
commit_options: '--signoff'
commit_message: 'run error codes utility'
file_pattern: helpers/ **/error.go
# to push changes to meshery docs
- name: Checkout meshery
uses: actions/checkout@master
with:
repository: 'meshery/meshery'
# token with write access to meshery repository
token: ${{ secrets.GH_ACCESS_TOKEN }}
path: 'meshery'
ref: 'master'
- name: Update docs
run: |
echo '{ "errors_export": "" }' | jq --slurpfile export ./helpers/errorutil_errors_export.json '.errors_export = $export[0]' > ./meshery/docs/_data/errorref/app-mesh_errors_export.json
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
repository: ./meshery
commit_user_name: l5io
commit_user_email: [email protected]
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
commit_options: '--signoff'
commit_message: '[Docs] Error Code Reference: Updated codes for App-Mesh adapter'
file_pattern: docs/