webhook-actions

Webhook that runs scripts depending on the name


License
MIT
Install
pip install webhook-actions==0.2.1

Documentation

Webhook Actions

python Latest PyPI version Downloads Total alerts Language grade: Python

Webhook that runs scripts located in ~/webhook-actions/ directory.

How To Use

  1. Add scripts into webhook-actions. These can be in sub-directories
  2. Call the URL http://localhost:5000/your-script-name

Simple example

  • URL: http://localhost:5000/log-stat
  • Body: something
  • Command: ~/webhook-actions/log-stat something

Example with subdirectories

  • URL: https://YOUR_DOMAIM.com/git/your-project/deploy
  • Body: {"tag": "1.0.1"}
  • Command: ~/webhook-actions/git/your-project/deploy "{\"tag\": \"1.0.1\"}"

Example config file

The config file is located at ~/.webhook-actions.cgf. When you run the script the first time it will create a default configuration.

[General]
# Port to listen to
Port = 5000

Authors