An open API service indexing awesome lists of open source software.

https://github.com/proboci/probo-notifier

A small service that sends webhook and other notifications in response to builds run on Probo.CI.
https://github.com/proboci/probo-notifier

Last synced: 12 months ago
JSON representation

A small service that sends webhook and other notifications in response to builds run on Probo.CI.

Awesome Lists containing this project

README

          

# Probo Notifier

This project is a part of the [probo.ci](http://probo.ci) suite and is responsible
for sending notifications of build events to external in the form of webhooks or
similar.

## The configuration

You can add notifications to your build simply by adding a `notifications` key to your
`.probo.yaml` file. This will allow you to start getting webhooks delivered to your
service when changes happend to your builds including steps completing and builds passing
or failing.

Simple examples:

``` yaml
notifications:
webhook: https://example.com/api/probo-notification

```

``` yaml

notifications:
webhook:
- https://example.com/api/probo-notification1
- https://example.com/api/probo-notification2
```