Skip to content

Merge pull request #51 from tinybirdco/fix/react2shell-vulnerability #7

Merge pull request #51 from tinybirdco/fix/react2shell-vulnerability

Merge pull request #51 from tinybirdco/fix/react2shell-vulnerability #7

Workflow file for this run

name: Sync live demo branch with main
on:
push:
branches:
- main
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Sync main into live
run: |
git checkout live
git merge origin/main --no-edit
git push origin live