From 3869093a6c0291f7fb7c51dbbedc6fefc702f2b3 Mon Sep 17 00:00:00 2001 From: Ragesh Ramachandran <49311464+ipa-rar@users.noreply.github.com> Date: Mon, 14 Mar 2022 17:22:42 +0100 Subject: [PATCH] added workflow to sync across forks --- .github/workflows/sync2upstream.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/sync2upstream.yml diff --git a/.github/workflows/sync2upstream.yml b/.github/workflows/sync2upstream.yml new file mode 100644 index 0000000..2aa5329 --- /dev/null +++ b/.github/workflows/sync2upstream.yml @@ -0,0 +1,18 @@ +name: Sync to Upstream + +on: + schedule: + - cron: '0 8 * * 1,4' + # scheduled at 08:00 every Monday and Thursday + workflow_dispatch: + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - uses: tgymnich/fork-sync@v1.3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + owner: ipa320 + base: main + head: main