light-webhook is a lightweight application for receiving webhooks and processing them as streams
88
👷 THIS VERSION IS UNDER DEVELOPMENT.
Use this version (1.0.6) or help me contributing.
light-webhook is a lightweight application for receiving webhooks from different sources, processing them as streams and publishing the results in sinks.
Create a configuration.yml file with this following configuration.
name: github_webhook_to_bash_script
stream:
- name: github
type: github-source
settings:
host: 127.0.0.0
port: 8080
path: /github
events:
- push
- merge_request
out:
- console
- bash
# print received github request body
- name: console
type: console-sink
settings:
format: json
# execute custom script based on github request body
- name: bash
type: bash-sink
settings:
command: ./custom_script.sh
args: ["--req", "{{@stringify(it)}}"]
Then launch application light-webhook -c configuration.yml. And send Github webhook to http://127.0.0.1:8080/github.
Voilà, you custom_script.sh will be executed with arguments based on received Github request
You can pass your configuration using /conf/configuration.yaml mounted volume.
docker run --name light-webhook -v $(pwd)/test/configuration.yaml:/conf/configuration.yaml -p 8080:8080 rpenco/light-webhook:2
MIT License
Content type
Image
Digest
Size
40.2 MB
Last updated
over 5 years ago
docker pull rpenco/light-webhook:2.0.0-alpha.1