Aave V3 Bad Debt Trigger #75
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: Aave V3 Bad Debt Trigger | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
env: | |
DEBT_THRESHOLD_RATIO: "0.5" | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} | |
jobs: | |
my_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pip' # caching pip dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Run Aave V3 Mainnet | |
run: python bad-debt-trigger.py | |
env: | |
PROTOCOL: "Aave V3 Mainnet" | |
DATA_URL: "https://raw.githubusercontent.com/Risk-DAO/simulation-results/main/bad-debt/latest/ethereum_aave%20v3.json" | |
- name: Run Aave V3 Arbitrum | |
run: python bad-debt-trigger.py | |
env: | |
PROTOCOL: "Aave V3 Arbitrum" | |
DATA_URL: "https://raw.githubusercontent.com/Risk-DAO/simulation-results/main/bad-debt/latest/arbitrum_aave%20v3.json" | |
- name: Run Aave V3 Polygon | |
run: python bad-debt-trigger.py | |
env: | |
PROTOCOL: "Aave V3 Polygon" | |
DATA_URL: "https://raw.githubusercontent.com/Risk-DAO/simulation-results/main/bad-debt/latest/polygon_aave%20v3.json" | |
- name: Run Aave V3 Optimism | |
run: python bad-debt-trigger.py | |
env: | |
PROTOCOL: "Aave V3 Optimism" | |
DATA_URL: "https://raw.githubusercontent.com/Risk-DAO/simulation-results/main/bad-debt/latest/optimism_aave%20v3.json" |