Unverified Commit 6d96c9a2 authored by Janne Heß's avatar Janne Heß Committed by GitHub
Browse files

ci: Label 10.rebuild-*-stdenv (#369102)

Currently ofborg does this, but there is actually no real reason this
shouldn't be done by CI
parent 344c99f7
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -96,7 +96,12 @@ let
          rebuildsByKernel
          rebuildCountByKernel
          ;
        labels = getLabels rebuildCountByKernel;
        labels =
          (getLabels rebuildCountByKernel)
          # Adds "10.rebuild-*-stdenv" label if the "stdenv" attribute was changed
          ++ lib.mapAttrsToList (kernel: _: "10.rebuild-${kernel}-stdenv") (
            lib.filterAttrs (_: kernelRebuilds: kernelRebuilds ? "stdenv") rebuildsByKernel
          );
      }
    );
in