diff --git a/.github/workflows/sync-forks.yml b/.github/workflows/sync-forks.yml new file mode 100644 index 0000000..088f904 --- /dev/null +++ b/.github/workflows/sync-forks.yml @@ -0,0 +1,29 @@ +name: Sync Forks + +on: + schedule: + - cron: "47 11 * * *" # once every day + workflow_dispatch: # on button click + push: + paths: + - .github/workflows/sync-forks.yml + +permissions: + contents: write + +env: + # token must be created by someone with write access for all forks + GH_TOKEN: ${{ secrets.SYNC_FORK_TOKEN }} + UPSTREAM_OWNER: CCBR + +jobs: + sync: + runs-on: ubuntu-latest + strategy: + matrix: + FORK_OWNER: [NCIPangea] + REPO: [XAVIER, RENEE] + steps: + - name: sync forked repos + run: | + gh repo sync ${{ matrix.FORK_OWNER }}/${{ matrix.REPO }} --source $UPSTREAM_OWNER/${{ matrix.REPO }} --force