Skip to content

Sync upstream

Sync upstream #49

Workflow file for this run

name: Sync upstream
on:
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git remote add upstream https://github.com/christopherkarani/Hive.git
git fetch upstream
git merge --ff-only upstream/master
git push