Nobody should have to refresh the Builds page all day. MonkeysCloud pushes updates to the channels your team already uses.
In-app notifications
Build and deployment events appear in your dashboard notifications, so the team always sees what’s happening.
Slack
Connect a Slack webhook in the project settings and choose which events to post — successful deploys, failed builds, and rollbacks all land in the channel of your choice.
Opt in to emails for important events, like a failed production deploy or a rollback.
Custom webhooks
For full control, send events to your own endpoint. Webhooks include a signature so you can verify they came from MonkeysCloud. See webhooks for setup.
Example
To get Slack updates for builds and deploys, add this to your pipeline config:
notifications:
slack:
webhook: $SLACK_WEBHOOK_URL
events: [build.failed, deploy.completed, deploy.failed]