From 427443c6545cf6e3ab5b381cf8682f5e1b4a4f75 Mon Sep 17 00:00:00 2001 From: Robin Windey Date: Sat, 10 Oct 2020 09:19:36 +0200 Subject: [PATCH] Autosync with upstream via Github Actions (#2) --- .github/workflows/sync_fork.yml | 16 ++++++++++++++++ 1 file changed, 16 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..0561ef1 --- /dev/null +++ b/.github/workflows/sync_fork.yml @@ -0,0 +1,16 @@ +name: Sync Fork + +on: + schedule: + - cron: '30 20 * * *' + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - uses: TG908/fork-sync@v1.1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + owner: nginx-proxy + base: master + head: master \ No newline at end of file