From 45670434f5925ac439211b7ab3b1a55647984854 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sat, 20 Apr 2024 15:05:25 -0400 Subject: [PATCH] fix pr's Signed-off-by: ahuston-0 --- hydra/jobsets.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hydra/jobsets.nix b/hydra/jobsets.nix index ffad1e2..a16772a 100644 --- a/hydra/jobsets.nix +++ b/hydra/jobsets.nix @@ -65,8 +65,8 @@ let jobOfPR = id: info: { name = "pr-${id}"; value = makeJob { - description = "PR ${id}: ${info.title}"; - flake = "git+ssh://git@github.com/${info.head.repo.full_name}?ref=${info.head.ref}"; + description = "PR ${id}: ${info.${id}.title}"; + flake = "git+ssh://git@github.com/${info.${id}.head.repo.full_name}?ref=${info.${id}.head.ref}"; }; }; attrsToList = l: builtins.attrValues (builtins.mapAttrs (name: value: { inherit name value; }) l);