https://github.com/collectiveidea/buildlight
Aggregating webhooks from multiple build services (Travis, Circle, Heroku) to power the stoplight in our office.
https://github.com/collectiveidea/buildlight
circle-ci heroku-ci stoplight travis-ci
Last synced: 3 months ago
JSON representation
Aggregating webhooks from multiple build services (Travis, Circle, Heroku) to power the stoplight in our office.
- Host: GitHub
- URL: https://github.com/collectiveidea/buildlight
- Owner: collectiveidea
- License: mit
- Created: 2012-11-23T16:20:58.000Z (over 13 years ago)
- Default Branch: main
- Last Pushed: 2026-03-20T02:54:13.000Z (3 months ago)
- Last Synced: 2026-03-20T18:23:59.137Z (3 months ago)
- Topics: circle-ci, heroku-ci, stoplight, travis-ci
- Language: Ruby
- Homepage: https://buildlight.collectiveidea.com/collectiveidea
- Size: 2.72 MB
- Stars: 9
- Watchers: 6
- Forks: 3
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BuildLight
[](https://github.com/collectiveidea/buildlight/actions/workflows/ci.yml)[](https://travis-ci.org/collectiveidea/buildlight) [](https://circleci.com/gh/collectiveidea/buildlight) [](https://github.com/testdouble/standard)
Catches webhooks from build services (GitHub Actions, Travis CI, Circle CI, etc.) and provides data to power our office stoplight.

## Add Projects
### GitHub Actions
We assume you have one or more GitHub Action workflow(s) you use. You'll need their `name` below in the `workflows` section.
Copy this to `.github/workflows/buildlight.yml` :
```yaml
name: Buildlight
on:
workflow_run:
workflows: [Run Tests] # Replace with your GitHub Action's name(s)
branches: [main] # Your default branch.
jobs:
buildlight:
runs-on: ubuntu-latest
steps:
- uses: collectiveidea/buildlight@main
```
### Travis CI
Simply add this to your `.travis.yml` file:
```yaml
notifications:
webhooks:
urls:
- https://buildlight.collectiveidea.com/
on_start: always
```
### Circle CI
Go to your project settings in Circle CI and add a new Webhook with `https://buildlight.collectiveidea.com` as the Receiver URL. Ensure the the "Workflow Completed" event is checked.
## Viewing Status
The [main website](https://buildlight.collectiveidea.com/) shows the basic status for all projects. Adding a user/organization name to the url shows just those projects, for example: [https://buildlight.collectiveidea.com/collectiveidea](https://buildlight.collectiveidea.com/collectiveidea).
Devices (editable only manually for now) can aggregate multiple organizations & projects, and have their own URL. For example, our office's physical light (see gif above) aggregates [@collectiveidea](https://github.com/collectiveidea), [@deadmanssnitch](https://github.com/deadmanssnitch), and client projects. Its URL is: https://buildlight.collectiveidea.com/devices/collectiveidea-office
## License
This software is © Copyright [Collective Idea](http://collectiveidea.com) and released under the MIT License.