summary refs log tree commit diff
path: root/maintainers/scripts/haskell
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2022-07-22 00:26:52 +0200
committerMalte Brandy <malte.brandy@maralorn.de>2022-07-22 00:26:52 +0200
commitb4d18728854341c38783206bf3f881017843a5cc (patch)
treeac3b54bb9211111ca6099d0ba784078c447c5a2a /maintainers/scripts/haskell
parent15924be1b2870b0312e36958e79f7c3180f4a127 (diff)
downloadnixpkgs-b4d18728854341c38783206bf3f881017843a5cc.tar
nixpkgs-b4d18728854341c38783206bf3f881017843a5cc.tar.gz
nixpkgs-b4d18728854341c38783206bf3f881017843a5cc.tar.bz2
nixpkgs-b4d18728854341c38783206bf3f881017843a5cc.tar.lz
nixpkgs-b4d18728854341c38783206bf3f881017843a5cc.tar.xz
nixpkgs-b4d18728854341c38783206bf3f881017843a5cc.tar.zst
nixpkgs-b4d18728854341c38783206bf3f881017843a5cc.zip
maintainers/scripts/haskell/hydra-report: Add hint about eval errors
Diffstat (limited to 'maintainers/scripts/haskell')
-rwxr-xr-xmaintainers/scripts/haskell/hydra-report.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/maintainers/scripts/haskell/hydra-report.hs b/maintainers/scripts/haskell/hydra-report.hs
index 60b57b97a2b..fe55f13de70 100755
--- a/maintainers/scripts/haskell/hydra-report.hs
+++ b/maintainers/scripts/haskell/hydra-report.hs
@@ -451,8 +451,8 @@ printBuildSummary
       showBuild (name, entry) = printJob id name (summaryBuilds entry, Text.pack (if summaryReverseDeps entry > 0 then " :arrow_heading_up: " <> show (summaryUnbrokenReverseDeps entry) <>" | "<> show (summaryReverseDeps entry) else ""))
       showMaintainedBuild (name, (table, maintainers)) = printJob id name (table, Text.intercalate " " (fmap ("@" <>) (toList maintainers)))
       tldr = case (errors, warnings) of
-               ([],[]) -> [":green_circle: **Ready to merge**"]
-               ([],_) -> [":yellow_circle: **Potential issues**"]
+               ([],[]) -> [":green_circle: **Ready to merge** (if there are no [Evaluation Errors](https://hydra.nixos.org/jobset/nixpkgs/haskell-updates))"]
+               ([],_) -> [":yellow_circle: **Potential issues** (and possibly [Evaluation Errors](https://hydra.nixos.org/jobset/nixpkgs/haskell-updates))"]
                _ -> [":red_circle: **Branch not mergeable**"]
       warnings =
          if' (Unfinished > maybe Success worstState maintainedJob) "`maintained` jobset failed." <>