-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (38 loc) · 1.26 KB
/
generate-api-client.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
name: OpenAPI
on:
pull_request:
paths:
- 'server/application-server/**'
- '.github/workflows/generate-api-client.yml'
workflow_dispatch:
jobs:
generate-api-client:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Install dependencies
run: npm install
- name: Pull latest changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git pull --rebase origin ${{ github.event.pull_request.head.ref }}
- name: Generate API client
run: npm run generate:api
- name: Commit and push changes
run: |
git add webapp/src/app/core/modules/openapi
git diff-index --quiet HEAD || git commit -m "chore: update API client"
git push origin HEAD:${{ github.event.pull_request.head.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}