From c7da323adda616d42c7674d994492dce4fb4b70b Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Sat, 4 Jun 2022 18:34:28 +0200 Subject: [PATCH] Added color for 'created' pipelines Signed-off-by: Louis Vallat --- src/gitlab_controller.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gitlab_controller.rs b/src/gitlab_controller.rs index 2be3375..b3aa56b 100644 --- a/src/gitlab_controller.rs +++ b/src/gitlab_controller.rs @@ -56,6 +56,7 @@ impl PipelineStatus { PipelineStatus::Running => (Color::AMBER, true), PipelineStatus::Success => (Color::GREEN, false), PipelineStatus::Failed => (Color::RED, false), + PipelineStatus::Created => (Color::ORANGE, false), _ => { warn!("Unknown color for pipeline status {:?}.", self); (Color::OFF, false) } };