ci/github-script: add gh dependency to dev shell

Changed files
+4 -2
ci
github-script
+1 -1
ci/github-script/README.md
···
To run any of the scripts locally:
-
- Provide `gh` on `PATH` and make sure it's authenticated.
- Enter `nix-shell` in `./ci/github-script`.
+
- Ensure `gh` is authenticated.
## Labeler
+3 -1
ci/github-script/shell.nix
···
pkgs.callPackage (
{
+
gh,
+
importNpmLock,
mkShell,
-
importNpmLock,
nodejs,
}:
mkShell {
packages = [
+
gh
importNpmLock.hooks.linkNodeModulesHook
nodejs
];