Skip to content

Support native SQLite and Bun data-table adapter tests (#11276) #345

Support native SQLite and Bun data-table adapter tests (#11276)

Support native SQLite and Bun data-table adapter tests (#11276) #345

Workflow file for this run

name: Update "Release" PR
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v6
with:
token: ${{ secrets.GH_REMIX_PAT }}
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version-file: 'package.json'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Update PR
run: node scripts/release-pr.ts
env:
GITHUB_TOKEN: ${{ secrets.GH_REMIX_PAT }}