Compare commits

..

No commits in common. "5be6b3e72395524ddb96ac83823d7d2adaa1d248" and "b1ce62174bb32fb2c9f395931a9ae63cf98d9448" have entirely different histories.

View File

@ -44,7 +44,7 @@ let
emailoverride = ""; emailoverride = "";
}; };
giteaHost = "ssh://gitea@nayeonie.com:2222"; giteaHost = "ssh://nayeonie.com:2222";
repo = "ahuston-0/nix-dotfiles"; repo = "ahuston-0/nix-dotfiles";
# # Create a hydra job for a branch # # Create a hydra job for a branch
jobOfRef = jobOfRef =
@ -66,8 +66,8 @@ let
name = if info.draft then "draft-${id}" else "pr-${id}"; name = if info.draft then "draft-${id}" else "pr-${id}";
value = makeJob { value = makeJob {
description = "PR ${id}: ${info.title}"; description = "PR ${id}: ${info.title}";
flake = "git+${giteaHost}/${repo}?ref=${info.head.ref}"; flake = "git+ssh://gitea@nayeonie.com:2222/${info.head.repo.full_name}?ref=${info.head.ref}";
enabled = info.state == "open"; enabled = if info.state == "open" then 1 else 0;
}; };
}; };