Hello!
Unfortunately, there is no such built-in functionality. Nonetheless, you could do one of these two things:
- Every day, you could run an Actor that fetches all the runs from that day and sends a report according to the condition you prefer. You can use the Apify API to fetch the runs and their status: clients for JavaScript and Python are also available.
- Run a web server exposing an endpoint that you can contact using a web-hook every time an actor fails/times-out. Periodically, you could send a report based on how many times that endpoint was called.
For sending notifications, you could call an actor from the store, for convenience, such as
this or
this.