Sync Fork #1
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
# This workflow will open a PR every 30 minutes to sync our develop branch with optimism's develop branch. | |
# Our actual fork with eigenda related patches is in eigenda-develop branch, which needs to be manually synced with the develop branch. | |
name: Sync Fork | |
on: | |
schedule: | |
- cron: "*/30 * * * *" # every 30 minutes | |
workflow_dispatch: # on button click | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tgymnich/[email protected] | |
with: | |
owner: ethereum-optimism | |
base: develop | |
head: develop |