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

Currently ofborg does this, but there is actually no real reason this
shouldn't be done by CI

authored by Janne Heß and committed by GitHub 6d96c9a2 344c99f7

+6 -1
+6 -1
ci/eval/compare/default.nix
··· 96 96 rebuildsByKernel 97 97 rebuildCountByKernel 98 98 ; 99 - labels = getLabels rebuildCountByKernel; 99 + labels = 100 + (getLabels rebuildCountByKernel) 101 + # Adds "10.rebuild-*-stdenv" label if the "stdenv" attribute was changed 102 + ++ lib.mapAttrsToList (kernel: _: "10.rebuild-${kernel}-stdenv") ( 103 + lib.filterAttrs (_: kernelRebuilds: kernelRebuilds ? "stdenv") rebuildsByKernel 104 + ); 100 105 } 101 106 ); 102 107 in