Skip to content

fix(core): fix snapshot restore to correctly restore tables when snapshot is taken under heavy DDL load #9197

fix(core): fix snapshot restore to correctly restore tables when snapshot is taken under heavy DDL load

fix(core): fix snapshot restore to correctly restore tables when snapshot is taken under heavy DDL load #9197

Workflow file for this run

name: Danger
on:
pull_request:
types: [synchronize, opened, reopened, edited]
jobs:
build:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} # Only run on non-forked PRs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@master
with:
node-version: 16.x
- name: install danger
run: yarn global add danger
- name: Validate PR title validation rules
working-directory: ./ci/validate-pr-title
run: node validate.test.js
- name: Danger
run: danger ci
working-directory: ./ci/validate-pr-title
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_TOKEN }}