From b8ff1dedd3f79c64cadccfbef8ef5d7704086845 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 12 Jun 2025 12:39:51 -0600 Subject: [PATCH] add github action to sync master branch with upstream PRRTE master, starting once a day. Signed-off-by: Howard Pritchard --- .github/workflows/fork_sync.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/fork_sync.yaml diff --git a/.github/workflows/fork_sync.yaml b/.github/workflows/fork_sync.yaml new file mode 100644 index 0000000000..728570597e --- /dev/null +++ b/.github/workflows/fork_sync.yaml @@ -0,0 +1,23 @@ +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: + token: ${{ secrets.PRRTE_SYNC_UPSTREAM_MASTER_ID }} + owner: openpmix + base: master + head: master + auto_merge: true + auto_approve: false + +