Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 765 Bytes

readme.md

File metadata and controls

17 lines (11 loc) · 765 Bytes

Overview

FastAPI service, provides asynchronous methods to handle GitHub events (for now):

  • push
  • pull request (also with merged action)
  • star

When in your repository occurs one of these events you get message in your own Telegram bot, of course you need to create it or use another one.

Installation

  • clone this repository using git clone <link> command
  • install dependencies poetry install

Usage

Create webhook in your repository, start the server (in virtual environment) uvicorn main:app --port <port>, make sure GitHub can send request to your IP address, for example, you can use ngrok for testing ngrok http <port>.