diff --git a/nixos/roles/git.nix b/nixos/roles/git.nix index 3ebf014c..a627d621 100644 --- a/nixos/roles/git.nix +++ b/nixos/roles/git.nix @@ -25,7 +25,7 @@ let jobMay <- lookupEnv "GL_OPTION_CI_JOB" whenJust jobMay $ \job -> do args <- toString . Text.intercalate " " . fmap toText <$> getArgs - setEnv "LAMINAR_REASON" [i|Build triggered by push of branch #{args}|] + setEnv "LAMINAR_REASON" [i|Build triggered by push to branch #{args}|] jobName <- decodeUtf8 <$> (laminarc ["queue", job, [i|BRANCH=#{args}|]] |> captureTrim) say [i|Queued job #{jobName}.\nSee https://ci.maralorn.de/jobs/#{Text.replace ":" "/" jobName}|] mirrorMay <- lookupEnv "GL_OPTION_MIRROR"