From a43613219b73aad09725c67a92701fc3c1029fa4 Mon Sep 17 00:00:00 2001 From: PascalR <24775431+mroxso@users.noreply.github.com> Date: Thu, 27 Apr 2023 11:02:48 +0200 Subject: [PATCH] Add sync fork github action --- .github/workflows/sync-fork.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/sync-fork.yml diff --git a/.github/workflows/sync-fork.yml b/.github/workflows/sync-fork.yml new file mode 100644 index 0000000..c166122 --- /dev/null +++ b/.github/workflows/sync-fork.yml @@ -0,0 +1,18 @@ +name: Sync Fork + +on: + schedule: + - cron: '0 2 * * *' # once a day at 2 am + workflow_dispatch: # on button click + +jobs: + sync: + + runs-on: ubuntu-latest + + steps: + - uses: tgymnich/fork-sync@v1.8 + with: + owner: scsibug + base: master + head: master \ No newline at end of file