mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
369cfa02da
Also post a comment in case base branch is wrong This guides newcomers in how to smoothly handle the potentially scary situation of having thousands of commits listed in a PR. While CI shows the same, people might not even look at CI if the PR looks botched.
44 lines
798 B
Nix
44 lines
798 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
makeWrapper,
|
|
coreutils,
|
|
codeowners,
|
|
jq,
|
|
curl,
|
|
github-cli,
|
|
gitMinimal,
|
|
}:
|
|
stdenvNoCC.mkDerivation {
|
|
name = "request-reviews";
|
|
src = lib.fileset.toSource {
|
|
root = ./.;
|
|
fileset = lib.fileset.unions [
|
|
./get-reviewers.sh
|
|
./request-reviews.sh
|
|
./verify-base-branch.sh
|
|
./dev-branches.txt
|
|
];
|
|
};
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv dev-branches.txt $out/bin
|
|
for bin in *.sh; do
|
|
mv "$bin" "$out/bin"
|
|
wrapProgram "$out/bin/$bin" \
|
|
--set PATH ${
|
|
lib.makeBinPath [
|
|
coreutils
|
|
codeowners
|
|
jq
|
|
curl
|
|
github-cli
|
|
gitMinimal
|
|
]
|
|
}
|
|
done
|
|
'';
|
|
}
|