rss-webhook-trigger/README.md
2021-01-07 20:47:11 +01:00

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"
```