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.
- Host: GitHub
- URL: https://github.com/proboci/probo-notifier
- Owner: ProboCI
- License: apache-2.0
- Created: 2016-09-09T12:16:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-01-18T18:50:54.000Z (over 1 year ago)
- Last Synced: 2025-05-31T17:06:59.853Z (about 1 year ago)
- Language: JavaScript
- Size: 214 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```