fix pr input config
This commit is contained in:
parent
8cc3ccfb55
commit
4112cd1654
1 changed files with 30 additions and 28 deletions
|
@ -22,34 +22,36 @@
|
|||
enableemail = false;
|
||||
emailoverride = "";
|
||||
keepnr = 1;
|
||||
nix-packages = {
|
||||
type = "git";
|
||||
url = "${info.head.repo.clone_url} ${info.head.ref}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
nixpkgs = {
|
||||
type = "git";
|
||||
value = "https://github.com/NixOS/nixpkgs.git ${version}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
system = {
|
||||
type = "string";
|
||||
value = system;
|
||||
};
|
||||
gitea_status_repo = {
|
||||
type = "string";
|
||||
value = "nix-packages";
|
||||
emailresponsible = false;
|
||||
};
|
||||
gitea_repo_owner = {
|
||||
type = "string";
|
||||
value = "${info.head.repo.owner.login}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
gitea_repo_name = {
|
||||
type = "string";
|
||||
value = "${info.head.repo.name}";
|
||||
emailresponsible = false;
|
||||
inputs = {
|
||||
nix-packages = {
|
||||
type = "git";
|
||||
url = "${info.head.repo.clone_url} ${info.head.ref}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
nixpkgs = {
|
||||
type = "git";
|
||||
value = "https://github.com/NixOS/nixpkgs.git ${version}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
system = {
|
||||
type = "string";
|
||||
value = system;
|
||||
};
|
||||
gitea_status_repo = {
|
||||
type = "string";
|
||||
value = "nix-packages";
|
||||
emailresponsible = false;
|
||||
};
|
||||
gitea_repo_owner = {
|
||||
type = "string";
|
||||
value = "${info.head.repo.owner.login}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
gitea_repo_name = {
|
||||
type = "string";
|
||||
value = "${info.head.repo.name}";
|
||||
emailresponsible = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue