Governance Checks #612
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: Governance Checks | |
concurrency: | |
group: ${{ github.workflow }} | |
on: | |
schedule: | |
- cron: "0 */4 * * *" | |
push: | |
paths-ignore: | |
- "reports/**" | |
- "README.md" | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
generate-reports: | |
name: Check all live proposals | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Install solc-select | |
run: pip3 install solc-select | |
- name: Install Slither | |
run: pip3 install slither-analyzer | |
- name: Run checks | |
id: test | |
run: yarn start | |
env: | |
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
RPC_MAINNET: ${{ secrets.RPC_MAINNET }} | |
RPC_POLYGON: ${{ secrets.RPC_POLYGON }} | |
RPC_AVALANCHE: ${{ secrets.RPC_AVALANCHE }} | |
RPC_OPTIMISM: ${{ secrets.RPC_OPTIMISM }} | |
RPC_ARBITRUM: ${{ secrets.RPC_ARBITRUM }} | |
RPC_BASE: ${{ secrets.RPC_BASE }} | |
RPC_GNOSIS: ${{ secrets.RPC_GNOSIS }} | |
RPC_BNB: ${{ secrets.RPC_BNB }} | |
TENDERLY_ACCESS_TOKEN: ${{ secrets.TENDERLY_ACCESS_TOKEN }} | |
TENDERLY_PROJECT_SLUG: ${{ secrets.TENDERLY_PROJECT_SLUG }} | |
TENDERLY_ACCOUNT: ${{ secrets.TENDERLY_ACCOUNT }} | |
IPFS_GATEWAY: ${{secrets.IPFS_GATEWAY}} | |
- name: check diff | |
run: | | |
if [[ -z $(git status -s) ]] | |
then | |
echo "tree is clean" | |
else | |
git config --global user.name 'Cache bot' | |
git config --global user.email '[email protected]' | |
git config --global pull.rebase true | |
git add . | |
git commit -am "fix(cache): ${{ steps.generator.outputs.matrix }} :robot:" | |
git pull --rebase --autostash | |
git push | |
exit | |
fi | |
- name: Post to a Slack channel | |
id: slack | |
if: failure() | |
uses: slackapi/[email protected] | |
with: | |
# Slack channel id, channel name, or user id to post message. | |
# See also: https://api.slack.com/methods/chat.postMessage#channels | |
channel-id: "C068J77L8JG" | |
# For posting a rich message using Block Kit | |
payload: | | |
{ | |
"text": "GitHub Action build result: ${{ job.status }}\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}", | |
"blocks": [ | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "GitHub Action build result: ${{ job.status }}\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
} | |
} | |
] | |
} | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |