feat: #148 Support Arize for Telemtry (#150) #64
This file contains hidden or 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 JSON Schema | |
| on: | |
| push: | |
| branches: [ main ] | |
| # Only run if the dsl or command to generate it change | |
| paths: | |
| - 'qtype/dsl/**' | |
| - 'qtype/commands/**' | |
| permissions: | |
| contents: write | |
| jobs: | |
| generate-schema: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| # Use a token that can push back to the repo | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install qtype and dependencies | |
| run: pip install . | |
| - name: Create schema directory if it doesn't exist | |
| run: mkdir -p schema | |
| - name: Generate JSON schema | |
| run: qtype generate schema -o schema/qtype.schema.json | |
| - name: Check if schema changed | |
| id: check-changes | |
| run: | | |
| if git diff --quiet schema/qtype.schema.json; then | |
| echo "changed=false" >> $GITHUB_OUTPUT | |
| else | |
| echo "changed=true" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Commit and push schema if changed | |
| if: steps.check-changes.outputs.changed == 'true' | |
| run: | | |
| git config --local user.email "action@github.com" | |
| git config --local user.name "GitHub Action" | |
| git add schema/qtype.schema.json | |
| git commit -m "Update JSON schema [skip ci]" | |
| git push |