From c3e39267b852321dd2baea53f66ecda5574fa4fd Mon Sep 17 00:00:00 2001 From: jc01rho Date: Mon, 12 Jan 2026 01:10:58 +0900 Subject: [PATCH] Create auto-sync --- .github/workflows/auto-sync | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/auto-sync diff --git a/.github/workflows/auto-sync b/.github/workflows/auto-sync new file mode 100644 index 00000000..0219a396 --- /dev/null +++ b/.github/workflows/auto-sync @@ -0,0 +1,17 @@ +name: Sync Fork + +on: + schedule: + - cron: '*/30 * * * *' # every 30 minutes + workflow_dispatch: # on button click + +jobs: + sync: + + runs-on: ubuntu-latest + + steps: + - uses: tgymnich/fork-sync@v1.8 + with: + base: main + head: main