From 30a0a4ab3ab8ca8828b390310c34c4a51b5a1e75 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Mon, 7 Jul 2025 09:18:33 -0600 Subject: [PATCH] add fork sync gha to ompi_main branch it seems that without having this action on ompi_main, its difficult to trigger manually. Note the action still targets just keeping the 'master' branch in sync with upstream prrte master. Signed-off-by: Howard Pritchard --- .github/workflows/fork_sync.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..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 + +