Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shreyasnayak/actioner
The Actioner is a c++ project that initiates or activates webhooks in response to events generated by an external third-party application.
https://github.com/shreyasnayak/actioner
Last synced: about 1 month ago
JSON representation
The Actioner is a c++ project that initiates or activates webhooks in response to events generated by an external third-party application.
- Host: GitHub
- URL: https://github.com/shreyasnayak/actioner
- Owner: shreyasnayak
- License: mit
- Created: 2023-07-13T06:14:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-14T11:08:09.000Z (over 1 year ago)
- Last Synced: 2023-07-14T12:24:19.781Z (over 1 year ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Actioner
The Actioner is a c++ project that initiates or activates webhooks in response to events generated by an external third-party application.# Eevnt data formate
```json
{
"event_name": {
"event_data_key_1": "a",
"event_data_key_2": "b"
}
}
```# Trigger Conf
```json
{
"triggers": [
{
"event_name": "event_name_here",
"trigger_name": "trigger_name_here",
"trigger_condition": {},
"const_var": {
"var_first_name": "shreyas",
"var_last_name": "nayak"
},
"var_gen_policy": {},
"trigger_type": "webhook",
"trigger_info": {
"url": "https://webhook.site/9bc12640-ff4b-4ffb-897e-3849df2d578a"
}
}
]
}
```