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

20 lines
219 B
Nix
Raw Normal View History

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