Skip to content

Sync Fork with Upstream #97

Sync Fork with Upstream

Sync Fork with Upstream #97

Workflow file for this run

name: Sync Fork with Upstream
on:
schedule:
- cron: '0 6 * * *' # Runs daily at 6 AM UTC
workflow_dispatch: # Manual trigger from Actions tab
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout fork
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Sync with upstream
run: |
git remote add upstream https://github.com/msrbuilds/elementor-mcp.git
git fetch upstream
git checkout main
git merge upstream/main --no-edit
git push origin main