Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Update fork

Update fork #6

Workflow file for this run

name: Update fork
on:
schedule:
- cron: '0 * * * *' # Runs every hour; change as needed.
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up the original repository as upstream
run: |
git remote add upstream https://github.com/LupineVault/lupinevault.github.io.git
git fetch upstream
- name: Sync with the upstream repository
run: |
git checkout main
git merge upstream/main
git push origin main