feat. Review foot note, docker fix, pass message to reviewer , update tests
Some checks failed
ci / test (push) Failing after 16s
ci / publish (push) Has been skipped

This commit is contained in:
Space-Banane
2026-05-22 22:16:09 +02:00
parent b32bf9eb82
commit e7c7d82f84
18 changed files with 322 additions and 14 deletions

View File

@@ -61,6 +61,7 @@ def enqueue_job(
pr_number: int,
head_sha: str,
trigger_comment_id: int,
trigger_comment_body: str | None,
requested_by: str,
command: ParsedCommand,
) -> ReviewJob:
@@ -69,6 +70,7 @@ def enqueue_job(
pr_number=pr_number,
head_sha=head_sha,
trigger_comment_id=trigger_comment_id,
trigger_comment_body=trigger_comment_body,
command=command.name,
command_args=" ".join(command.arguments) if command.arguments else None,
requested_by=requested_by,