01
Webhook, no bot
Discord channel webhooks. No bot user, no Manage Server permission, no OAuth - paste the URL, hit save, done.
Notifications
Most indie and OSS teams live on Discord. Lastest posts build results to any Discord channel via webhook - same routing model as Slack, no bot install, no OAuth, no server admin required.
What you get
01
Discord channel webhooks. No bot user, no Manage Server permission, no OAuth - paste the URL, hit save, done.
02
Verdict color (green / amber / red), passed / failed counts, branch, SHA, build link. Mention roles like <@&qa> on regressions only.
03
Different repos can post to different Discord servers and channels. One Lastest instance can fan out to as many Discord webhooks as you need.
How it works
Diagram 1 · Webhook flow
Diagram 2 · Embed anatomy
Diagram 3 · Multi-server fanout
Configure
Sample Discord embed Lastest sends on build completion
{
"username": "Lastest",
"embeds": [{
"title": "Build #842 - safe to merge",
"url": "https://your-lastest/builds/842",
"color": 5814783,
"fields": [
{ "name": "Repo", "value": "my-app", "inline": true },
{ "name": "Branch", "value": "feat/checkout", "inline": true },
{ "name": "SHA", "value": "abc1234", "inline": true },
{ "name": "Tests", "value": "8 passed · 0 review · 0 failed" }
]
}]
}