Add chain 8453 to v1.5.0 registry #1249
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: Review | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| paths: | |
| - 'src/assets/**' | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: 'Pull Request number to review' | |
| required: true | |
| type: number | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Verify Review Script | |
| run: | | |
| git fetch https://github.com/safe-global/safe-deployments.git main:safe-global-main | |
| if ! git diff --exit-code safe-global-main -- . ':!src/assets'; then | |
| echo "ERROR: GitHub review script may not be up-to-date" 1>&2 | |
| exit 1 | |
| fi | |
| - name: Install Dependencies | |
| run: | | |
| npm ci | |
| - name: Review PR | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| bash bin/github-review.sh ${{ inputs.pr_number || github.event.number }} |