add pending-reviews script

This commit is contained in:
Jörg Thalheim
2023-11-15 13:48:52 +01:00
parent 193d9d6919
commit a25c597f92
4 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ writeShellApplication
, bash
, curl
}:
writeShellApplication {
name = "pending-reviews";
runtimeInputs = [
bash
curl
];
text = builtins.readFile ./script.sh;
}