fix(form-core): prevent onBlur and onChange form listeners from canceling each other
#1575
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] | |
| workflow_dispatch: | |
| inputs: | |
| generate-docs: | |
| description: 'Generate docs' | |
| required: false | |
| default: false | |
| type: boolean | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| if: ${{ !contains(github.event.head_commit.message, 'apply automated fixes') }} | |
| name: autofix | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Fix formatting | |
| run: pnpm prettier:write | |
| - name: Generate Docs | |
| if: ${{ github.event_name == 'push' || github.event.inputs.generate-docs == true }} | |
| run: pnpm docs:generate | |
| - name: Apply fixes | |
| uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef | |
| with: | |
| commit-message: 'ci: apply automated fixes and generate docs' |