common,evaluator: add PR fields to evaluation; add jobset ordering test

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I305c988aceb8c72c65b740cb323c0ef06a6a6964
This commit is contained in:
raf 2026-02-07 20:19:16 +03:00
commit 794e4a8e61
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 7 additions and 3 deletions

View file

@ -172,8 +172,12 @@ async fn evaluate_jobset(
// Create evaluation record
let eval = repo::evaluations::create(pool, CreateEvaluation {
jobset_id: jobset.id,
commit_hash: commit_hash.clone(),
jobset_id: jobset.id,
commit_hash: commit_hash.clone(),
pr_number: None,
pr_head_branch: None,
pr_base_branch: None,
pr_action: None,
})
.await?;