Add workflow file for fork sync (#48) #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Fork | |
on: | |
schedule: | |
- cron: "0 0 * * *" # once a day | |
workflow_dispatch: # on button click | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 # `yarn test` takes longer time | |
steps: | |
- uses: tgymnich/fork-sync | |
with: | |
owner: across-protocol | |
repo: relayer | |
head: master | |
base: master | |
pr_title: Sync fork repo | |
pr_message: Merge latest changes from upstream repo |