mirror of
https://codeberg.org/icewind/rss-webhook-trigger.git
synced 2026-06-03 18:04:09 +02:00
22 lines
No EOL
538 B
Markdown
22 lines
No EOL
538 B
Markdown
# rss-webhook-trigger
|
|
|
|
Trigger webhooks from rss feeds.
|
|
|
|
Send a `POST` request to a webhook every time an rss feed changes.
|
|
|
|
Note that this will only detect changes made while the program is running, it is not able to detect changes made to
|
|
the feeds on program start.
|
|
|
|
### Configuration
|
|
|
|
```toml
|
|
interval = 600 # optional, defaults to 30 minutes
|
|
|
|
[[feed]]
|
|
feed = "https://example.com/feed1.xml"
|
|
hook = "https://hook.example.com/hook1/call"
|
|
|
|
[[feed]]
|
|
feed = "https://example.com/feed2.xml"
|
|
hook = "https://hook.example.com/hook2/call"
|
|
``` |