Added color for 'created' pipelines

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2022-06-04 18:34:28 +02:00
parent a1d8d1f0ff
commit c7da323add
No known key found for this signature in database
GPG Key ID: 0C87282F76E61283

View File

@ -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) }
};