clan-infra/pkgs/action-create-pr/default.nix

11 lines
176 B
Nix
Raw Normal View History

2023-08-03 14:13:22 +00:00
{ bash
, coreutils
, git
, tea
, openssh
, writePureShellScriptBin
}:
writePureShellScriptBin "action-create-pr" [ bash coreutils git tea openssh ] ''
bash ${./script.sh}
''