Merge branch 'master' of github.com:thirdeye-dev/thirdeye #219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate OpenAPI Schema for Redoc | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
paths: | |
- "backend/**" | |
pull_request_target: | |
branches: | |
- master | |
- dev | |
paths: | |
- "backend/**" | |
jobs: | |
generate-schema: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.head_ref }} | |
- name: Hotfix for https://github.com/aws-actions/setup-sam/issues/82 | |
run: | | |
$(dirname $(readlink $(which sam)))/pip install "cython<3.0.0" | |
$(dirname $(readlink $(which sam)))/pip install --no-build-isolation pyyaml==5.4.1 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/run-requirements.txt | |
# this edtion of the workflow uses Django's inbuilt generateschema to give us the schema file | |
- name: Generate the schema file | |
run: | | |
./backend/manage.py spectacular --file docs/schema.yml | |
- name: Commit the generated schema | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 🤖 commit the new OpenAPI schema | |
# this gives the commit author the github bot pfp and username | |
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com | |
file_pattern: 'docs/schema.yml' |