fix: tini entrypoint, event routing wildcard, orphan recovery

This commit is contained in:
Dev Agent
2026-05-22 13:52:46 +03:00
parent c326ef0ac4
commit 0ad56e1f0a
5 changed files with 29 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ async def gitea_webhook(request: Request):
if event_type == "push":
await handle_push(payload)
elif event_type in ("pull_request", "pull_request_approved", "pull_request_review_approved"):
elif event_type.startswith("pull_request"):
await handle_pr(payload)
elif event_type == "status":
await handle_ci_status(payload)