-
Notifications
You must be signed in to change notification settings - Fork 13
45 lines (37 loc) · 1.22 KB
/
ci-openapi.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
# Update database ERD diagrams and OpenAPI docs so that they remain up to date with the application
name: Update Database ERD Diagrams and OpenAPI Docs
on:
pull_request:
paths:
- api/**
- Makefile
- .github/workflows/ci-openapi.yml
defaults:
run:
working-directory: ./api
# Only trigger run one update of the OpenAPI spec at a time on the branch.
# If new commits are pushed to the branch, cancel in progress runs and start
# a new one.
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
update-openapi-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Checkout the feature branch associated with the pull request
ref: ${{ github.head_ref }}
- name: Create ERD diagram
run: make create-erds
- name: Update OpenAPI spec
run: make openapi-spec
- name: Push changes
run: |
git config user.name nava-platform-bot
git config user.email [email protected]
git add --all
# Commit changes (if no changes then no-op)
git diff-index --quiet HEAD || git commit -m "Create ERD diagram and Update OpenAPI spec"
git push