Remove chainId fallback logic and return error if agg.chainID is not … #270
Workflow file for this run
This file contains hidden or 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 Mainnet | |
on: | |
push: | |
#branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
sync-mainnet: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure Git | |
run: | | |
git config user.name "GitHub Actions" | |
git config user.email "github-actions@github.com" | |
- name: Fast-forward merge main into mainnet | |
run: | | |
git checkout mainnet | |
#git merge --ff-only origin/main | |
git merge origin/main | |
git push origin mainnet |