nixos-config/packages/touchpr/default.nix
Sridhar Ratnakumar db392e4917
touchpr: init
Useful to force push in a PR so as to trigger github actions, as with flake-lock-update action created PRs.
2024-08-04 18:18:05 -04:00

14 lines
275 B
Nix

{ nuenv, curl, jq, ... }:
nuenv.writeShellApplication {
name = "touchpr";
runtimeInputs = [ curl jq ];
meta.description = ''
Force push to a PR so as to trigger GitHub Actions
'';
text = ''
#!/usr/bin/env nu
${builtins.readFile ./touchpr.nu}
'';
}