Skip to content

Sync fork weekly

Sync fork weekly #5

Workflow file for this run

name: Sync fork weekly
on:
schedule:
- cron: '0 9 * * 1' # Monday 9 AM UTC
workflow_dispatch: # Manual trigger option
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Sync fork with upstream
run: |
git remote add upstream https://github.com/darksim33/Pyneapple.git
git fetch upstream
git checkout main
git merge upstream/main --no-edit
git push origin main