sashiko 0.2.5

Agentic code review system for Linux kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# GitHub webhook integration with HMAC-SHA256 verification.
# See docs/WEBHOOK_SECURITY.md for full setup guide.

[forge]
enabled = true
provider = "github"
# GitHub webhook secret for HMAC-SHA256 verification.
# Generate: openssl rand -hex 32
# Enter the same value in GitHub: repo Settings > Webhooks > Secret.
# Verifies both sender identity and payload integrity.
webhook_secret = "YOUR_HEX_SECRET_HERE"

[server]
host = "127.0.0.1"
port = 8080