rm evm from var name (#445)

This commit is contained in:
Jack Forgash 2025-05-15 08:56:40 -06:00 committed by GitHub
parent a5c55bc0ff
commit e5e7147a78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,10 +65,10 @@ def send_alert(webhook_url):
sys.exit(1) sys.exit(1)
if __name__ == '__main__': if __name__ == '__main__':
webhook_url = os.environ.get("EVM_SLACK_WEBHOOK_URL") webhook_url = os.environ.get("SLACK_WEBHOOK_URL")
if not webhook_url: if not webhook_url:
print("ERROR: EVM_SLACK_WEBHOOK_URL environment variable is required") print("ERROR: SLACK_WEBHOOK_URL environment variable is required")
sys.exit(1) sys.exit(1)
send_alert(webhook_url) send_alert(webhook_url)