Upgrade @tanstack/react-query to v5.90.2 to fix invalidateQuery in blitz v3 #2613
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: Changeset | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| changeset: | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-changeset') && github.event.pull_request.merged == false }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 16 | |
| - name: Check if changeset is added | |
| run: | | |
| npx @changesets/cli@2.12.0 status --since=origin/${GITHUB_BASE_REF} |