Skip to content

Merge pull request #753 from reservoirprotocol/changeset-release/main #418

Merge pull request #753 from reservoirprotocol/changeset-release/main

Merge pull request #753 from reservoirprotocol/changeset-release/main #418

Workflow file for this run

name: Sync privy with main
on:
push:
branches:
- main
jobs:
sync-privy:
runs-on: ubuntu-latest
name: Syncing privy with main
permissions:
contents: write
pull-requests: write
packages: write
steps:
- uses: actions/checkout@v2
- name: Set Git config
run: |
git config --local user.email "actions@github.com"
git config --local user.name "Github Actions"
- name: Sync privy with main
run: |
git fetch --unshallow
git checkout privy
git pull
git merge --no-ff main -m "Auto-merge main into privy"
git push