Timelock Authorizer #4
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: Timelock Authorizer | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: ['*', '**/*'] | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
verify-mainnet-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Mainnet Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
MAINNET_RPC_ENDPOINT: ${{ secrets.MAINNET_RPC_ENDPOINT }} | |
with: | |
network-name: mainnet | |
verify-polygon-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Polygon Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
POLYGON_RPC_ENDPOINT: ${{ secrets.POLYGON_RPC_ENDPOINT }} | |
with: | |
network-name: polygon | |
verify-arbitrum-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Arbitrum Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
ARBITRUM_RPC_ENDPOINT: ${{ secrets.ARBITRUM_RPC_ENDPOINT }} | |
with: | |
network-name: arbitrum | |
verify-optimism-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Optimism Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
OPTIMISM_RPC_ENDPOINT: ${{ secrets.OPTIMISM_RPC_ENDPOINT }} | |
with: | |
network-name: optimism | |
verify-bsc-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Binance Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
BINANCE_RPC_ENDPOINT: ${{ secrets.BINANCE_RPC_ENDPOINT }} | |
with: | |
network-name: bsc | |
verify-gnosis-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Gnosis Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
GNOSIS_RPC_ENDPOINT: ${{ secrets.GNOSIS_RPC_ENDPOINT }} | |
with: | |
network-name: gnosis | |
verify-avalanche-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Avalanche Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
AVALANCHE_RPC_ENDPOINT: ${{ secrets.AVALANCHE_RPC_ENDPOINT }} | |
with: | |
network-name: avalanche | |
verify-zkevm-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Polygon-ZkEvm Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
ZKEVM_RPC_ENDPOINT: ${{ secrets.ZKEVM_RPC_ENDPOINT }} | |
with: | |
network-name: zkevm | |
verify-base-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Base Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
BASE_RPC_ENDPOINT: ${{ secrets.BASE_RPC_ENDPOINT }} | |
with: | |
network-name: base | |
verify-fantom-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Fantom Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
FANTOM_RPC_ENDPOINT: ${{ secrets.FANTOM_RPC_ENDPOINT }} | |
with: | |
network-name: fantom | |
verify-goerli-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Goerli Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
GOERLI_RPC_ENDPOINT: ${{ secrets.GOERLI_RPC_ENDPOINT }} | |
with: | |
network-name: goerli | |
verify-sepolia-timelock-authorizer-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Verify Sepolia Timelock Authorizer Configuration | |
uses: ./.github/actions/verify-network-timelock-authorizer-config | |
env: | |
SEPOLIA_RPC_ENDPOINT: ${{ secrets.SEPOLIA_RPC_ENDPOINT }} | |
with: | |
network-name: sepolia | |
env: | |
CI: true |