forked from sablier-labs/phylax-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphylax.yaml
38 lines (38 loc) · 979 Bytes
/
phylax.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
alerts:
- name: mainnet-alert
on:
- rule: 'origin == hash "mainnet"'
interval: 5
foundryProjectRootPath: alerts
foundryProfile: mainnet
- name: arbitrum-alert
on:
- rule: 'origin == hash "arbitrum"'
interval: 5
foundryProjectRootPath: alerts
foundryProfile: arbitrum
- name: optimism-alert
on:
- rule: 'origin == hash "optimism"'
interval: 5
foundryProjectRootPath: alerts
foundryProfile: optimism
watchers:
- name: mainnet
chain: mainnet
ethRpc: "${ETH_RPC}"
- name: optimism
chain: optimism
ethRpc: "${OPTIMISM_WS_ETH_RPC}"
- name: arbitrum
chain: arbitrum
ethRpc: "${ARBITRUM_WS_ETH_RPC}"
# actions:
# - name: slack
# on:
# - rule: 'type == "alert_firing"'
# interval: 1
# target: "${SLACK_WEBHOOK}"
# platform: slack
# title: "Phylax Health Alert"
# description: "Some solidity tests reverted: \n ${event.body.failed_tests}"