fix(ai): nullable wrap for optional nested objects/arrays in strict schema #1696
Workflow file for this run
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: autofix.ci # needed to securely identify the workflow | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, alpha, beta, rc] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| name: autofix | |
| runs-on: ubuntu-latest | |
| env: | |
| # Run JS actions (e.g. autofix-ci/action, still `node20` runtime) on Node 24 per | |
| # https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup Tools | |
| uses: TanStack/config/.github/setup@main | |
| - name: Fix formatting | |
| run: pnpm format | |
| - name: Apply fixes | |
| # v1.3.3 — API endpoint reliability (see https://github.com/autofix-ci/action/releases/tag/v1.3.3) | |
| uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 | |
| with: | |
| commit-message: 'ci: apply automated fixes' |