From 36399df0060ce3171d3afef40024f7b8448ca99e Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 21 Aug 2020 13:51:47 +0100 Subject: [PATCH] Use emojis for build, lint steps Y'know... the important stuff --- ci/pipelines/briefcase.nix | 4 ++-- ci/pipelines/socrates.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pipelines/briefcase.nix b/ci/pipelines/briefcase.nix index 9b09ef69b..39ef3b437 100644 --- a/ci/pipelines/briefcase.nix +++ b/ci/pipelines/briefcase.nix @@ -4,11 +4,11 @@ let pipeline.steps = [ { command = "${pkgs.git-secrets}/bin/git-secrets --scan-history"; - label = ":briefcase: Briefcase [lint]"; + label = ":broom: lint"; } { command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace"; - label = ":briefcase: Briefcase [build]"; + label = ":hammer: build"; } ]; in pkgs.writeText "briefcase.yaml" (builtins.toJSON pipeline) diff --git a/ci/pipelines/socrates.nix b/ci/pipelines/socrates.nix index ffea654da..14cf10e0e 100644 --- a/ci/pipelines/socrates.nix +++ b/ci/pipelines/socrates.nix @@ -12,7 +12,7 @@ let --no-out-link \ --show-trace ''; - label = ":laptop: Socrates [build]"; + label = ":hammer: build"; } ]; in pkgs.writeText "socrates.yml" (builtins.toJSON pipeline)