Fix pr-rework crash — guard against missing review.state
Publish Image / publish (push) Successful in 23s Details

Gitea sends review objects without a state field in some cases.
Use optional chaining and log the review payload for debugging.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Daniel Samson 2026-04-12 16:26:58 +01:00
parent 81aee2f7fc
commit 2cdf68ddff
No known key found for this signature in database
GPG Key ID: A9EB2589C60F7268
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@ export function prRework(config: Config, queue: TaskQueue) {
return c.text("ignored: not a reviewed event", 200);
}
if (!event.review) {
if (!event.review?.state) {
console.log(`[pr-rework] ignored: no review state (review: ${JSON.stringify(event.review)})`);
return c.text("ignored: no review data", 200);
}