Skip to content

Sync Fork

Sync Fork #1817

name: Sync Fork
on:
schedule:
- cron: '0 0,8,16 * * *' # every 8 hours
workflow_dispatch: # on button click
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Fork Sync alpha (default branch)
uses: tgymnich/[email protected]
with:
owner: cardano-community
base: alpha
head: alpha
auto_approve: true
token: ${{ secrets.SYNC_TOKEN }}
- name: Fork Sync master (production branch)
uses: tgymnich/[email protected]
with:
owner: cardano-community
base: master
head: master
auto_approve: true
token: ${{ secrets.SYNC_TOKEN }}