Skip to content

fix(client): don't skip live changes after transaction ID wraparound #1638

fix(client): don't skip live changes after transaction ID wraparound

fix(client): don't skip live changes after transaction ID wraparound #1638

Workflow file for this run

name: Check Changeset
on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
name: Check Changeset
if: ${{ !startsWith(github.head_ref, 'changeset-release/') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5.0.0
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.tool-versions'
cache: pnpm
- run: pnpm install --filter . --frozen-lockfile
- run: node scripts/check-changeset.mjs
env:
GITHUB_BASE_REF: ${{ github.base_ref }}