No description
  • Rust 84.6%
  • Nix 15.4%
Find a file
2021-08-11 14:51:38 +02:00
.github/workflows bumb dependencies + docker ci 2021-07-31 15:49:26 +02:00
src allow settings headers and json body 2021-08-11 14:51:38 +02:00
.dockerignore docker setup 2021-01-07 21:01:46 +01:00
.gitignore initial version 2021-01-07 20:45:13 +01:00
Cargo.lock allow settings headers and json body 2021-08-11 14:51:38 +02:00
Cargo.toml allow settings headers and json body 2021-08-11 14:51:38 +02:00
config.toml initial version 2021-01-07 20:45:13 +01:00
Dockerfile docker setup 2021-01-07 21:01:46 +01:00
README.md readme 2021-01-07 20:47:11 +01:00

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

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"