clan-infra/pkgs/action-flake-update-pr-clan/default.nix
Jörg Thalheim 15b20d2e9e
All checks were successful
build / test (push) Successful in 7s
move devShells out of flake-parts
2023-08-03 16:18:29 +02:00

19 lines
323 B
Nix

{ bash
, coreutils
, action-checkout
, action-ensure-tea-login
, action-create-pr
, action-flake-update
, writePureShellScriptBin
}:
writePureShellScriptBin "action-flake-update-pr-clan" [
bash
coreutils
action-checkout
action-ensure-tea-login
action-create-pr
action-flake-update
] ''
bash ${./script.sh}
''