Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 680 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 680 Bytes

PR review notifier

octobot

Elevate github webhooks and integrations with popular messengers to notify developers about PRs waiting for the review.

Testing

Create config_local.py with settings overrides, install dependencies and run app via

$ poetry install
$ poetry run python -m app

You can simulate requests from github like this

  • PR was labeled
$ curl -v -H "Content-Type: application/json" \
    --data @test/payload_labeled.json http://localhost:8080/payload
  • PR was approved
$ curl -v -H "Content-Type: application/json" \
    --data @test/payload_submitted.json http://localhost:8080/payload

Deploy