-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (35 loc) · 1.01 KB
/
sync.yaml
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
name: Sync
on:
pull_request:
# TODO: add periodic + on-demand sync
permissions:
contents: read
pull-requests: write
checks: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
cache-dependency-path: |
./go.sum
_tools/go.sum
- name: Go version
run: go version
- name: Regenerate Swagger code
run: |
bin/update-swagger-doc.sh
bin/regenerate.sh
- name: Commit changes
run: |
today=$(date -u +'%Y-%m-%d')
git config --global user.email "[email protected]"
git config --global user.name "FireHydrant Bot"
git add .
git commit -m "Regenerate Swagger code ${today}"
git push -u origin "${today}"
gh pr create --title "Regenerate Swagger code ${today}" --body "Regenerate Swagger code ${today}" --base main