diff --git a/.github/workflows/fork_sync.yaml b/.github/workflows/fork_sync.yaml new file mode 100644 index 0000000000..84ac2f62ea --- /dev/null +++ b/.github/workflows/fork_sync.yaml @@ -0,0 +1,24 @@ +name: Sync Fork + +on: + schedule: + - cron: '* 13 * * *' # every day at 13 hours + workflow_dispatch: # on button click + +jobs: + sync: + + runs-on: ubuntu-latest + + steps: + - uses: tgymnich/fork-sync@v1.8 + with: + owner: openpmix + token: ${{ secrets.GITHUB_TOKEN }} + base: master + head: master + auto_merge: false + auto_approve: false + ignore_fail: true + +