Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.38 KB

build-notifications.rst

File metadata and controls

45 lines (32 loc) · 1.38 KB

Enabling Build Notifications

Using email

Read the Docs allows you to configure emails that can be sent on failing builds. This makes sure you know when your builds have failed.

Take these steps to enable build notifications using email:

You should now get notified by email when your builds fail!

Using webhook

Read the Docs can also send webhooks when builds are triggered, successful or failed.

Take these steps to enable build notifications using a webhook:

The project name, slug and its details for the build will be sent as POST request to your webhook URL:

{
     "name": "Read the Docs",
     "slug": "rtd",
     "build": {
         "id": 6321373,
         "commit": "e8dd17a3f1627dd206d721e4be08ae6766fda40",
         "state": "finished",
         "success": false,
         "date": "2017-02-15 20:35:54"
     }
}

You should now get notified on your webhook when your builds start and finish (failure/success)!