Add optional Discord webhook notifications
All checks were successful
check / check (push) Successful in 35s

This commit is contained in:
matamune 2026-05-12 21:33:24 +00:00
parent f49af83d2b
commit b455647580
Signed by: matamune
GPG key ID: 3BB8E7D3B968A324
5 changed files with 312 additions and 3 deletions

View file

@ -18,8 +18,14 @@ PORT=3000
DATA_DIR=/app/data
JOJO_WEBHOOK_SECRET=...
GITHUB_WEBHOOK_SECRET=...
DISCORD_WEBHOOK_URL=
DISCORD_NOTIFY_EVENTS=push,pull_request,release
```
Discord notifications are optional. When `DISCORD_WEBHOOK_URL` is unset, the
service skips Discord output. `DISCORD_NOTIFY_EVENTS` is a comma-separated
allow list and defaults to `push,pull_request,release`.
## Development
```bash