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

11 lines
181 B
Nix
Raw Permalink 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 ] ''
2023-08-07 08:30:59 +00:00
bash ${./script.sh} "$@"
2023-08-03 14:13:22 +00:00
''