Add fail-closed author allowlist gating job dispatch
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful

Sessions run claude with --dangerously-skip-permissions and a prompt built
from issue/PR/comment text, so only trusted authors may supply that text.
teabot now dispatches a job only when the triggering event's author login is
on an allowlist; an empty allowlist dispatches nothing (fail-closed).

Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv
This commit is contained in:
2026-07-27 00:33:09 +10:00
parent 3be3f4cc46
commit 748048be50
14 changed files with 413 additions and 6 deletions
+2
View File
@@ -36,6 +36,8 @@ type StateStore interface {
ActedOnPull(repo string, index int64) bool
MarkIssue(repo string, index int64)
MarkPull(repo string, index int64)
MarkIssueProcessed(repo string, index int64)
MarkPullProcessed(repo string, index int64)
MarkComment(repo string, id int64)
Seeded(repo string) bool
MarkSeeded(repo string)