-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (53 loc) · 1.69 KB
/
update.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Update Bindings
on:
schedule:
- cron: '0 15 * * 1-4' # Run every Monday through Thursday at 10:00 am Cayman time (15:00 UTC)
workflow_dispatch:
push:
pull_request:
branches:
- 'staging'
- 'main'
permissions:
contents: write
pull-requests: write
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
# - name: Use Node.js 19.x
# uses: actions/setup-node@v3
# with:
# node-version: 19
# cache: 'yarn'
- name: Install OpenAPI Generator
run: yarn global add @openapitools/openapi-generator-cli
- name: Generate API bindings
run: |
rm -r test/
openapi-generator-cli generate
- name: Commit and push changes
run: |
git config --local user.email "modabot@ai.moda"
git config --local user.name "modabot"
# Check if there are any changes
git add -A
if git status | grep -q "Changes to be committed"; then
# Create a new branch with a timestamp
branch_name="update-bindings-$(TZ='UTC' date --iso-8601=seconds | sed s/:/-/g)"
git checkout -b "$branch_name"
git commit -m "Update Go API bindings"
git push --set-upstream origin "$branch_name"
pr_title="Update Go API bindings"
pr_body="This PR updates the Go API bindings with the latest changes."
base_branch="main"
gh pr create --title "$pr_title" --body "$pr_body" --base "$base_branch" --head "$branch_name"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}