chore: update address list to reflect currently used facades (#898) #29
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 4bytes signatures | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- closed | |
jobs: | |
sync-signatures: | |
# if: github.event.pull_request.merged == true | |
name: '4Bytes Sync' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- run: yarn install --immutable | |
- run: yarn compile | |
- run: yarn run:4bytes | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 4bytes-syncced.json | |
commit_options: '--no-verify --signoff' | |
file_pattern: 'scripts/4bytes-syncced.json' | |