Skip to content

Commit b8ff1de

Browse files
committed
add github action to sync master branch
with upstream PRRTE master, starting once a day. Signed-off-by: Howard Pritchard <[email protected]>
1 parent 8f936a8 commit b8ff1de

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/fork_sync.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Sync Fork
2+
3+
on:
4+
schedule:
5+
- cron: '* 13 * * *' # every day at 13 hours
6+
workflow_dispatch: # on button click
7+
8+
jobs:
9+
sync:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: tgymnich/[email protected]
15+
with:
16+
token: ${{ secrets.PRRTE_SYNC_UPSTREAM_MASTER_ID }}
17+
owner: openpmix
18+
base: master
19+
head: master
20+
auto_merge: true
21+
auto_approve: false
22+
23+

0 commit comments

Comments
 (0)