From 6ad77c77063cf23055bd8408892f1bd25b0d2509 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Tue, 12 Jan 2021 08:21:45 +0100 Subject: [PATCH] Improve wording --- nixos/roles/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"