Skip to content

Re-instate commented out line. Referenced issue was fixed by [PR 7706… #23

Re-instate commented out line. Referenced issue was fixed by [PR 7706…

Re-instate commented out line. Referenced issue was fixed by [PR 7706… #23

Workflow file for this run

name: Generate typing module
on:
pull_request:
types: [assigned, opened, synchronize, reopened]
paths:
- "projects/adapter/**"
- ".github/workflows/generate_typing.yml"
jobs:
run:
runs-on: ubuntu-latest
# Run only the latest commit pushed to PR
concurrency:
group: "${{ github.head_ref || github.run_id }}-${{ github.workflow }}-${{ matrix.profile }}-${{ matrix.dbt }}-${{ matrix.python }}"
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Setup black
run: pip install black
- name: Generate typing
run: |
python tools/generate_typing_context.py
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Generate typing
commit_user_email: hello@fal.ai
commit_user_name: Fal Bot