summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/helpers/ci_status_helper.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index ff507765255..da0ebc0040a 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -23,6 +23,8 @@ module CiStatusHelper
case status
when 'success'
'passed'
+ when 'success_with_warnings'
+ 'passed with warnings'
else
status
end
@@ -41,6 +43,8 @@ module CiStatusHelper
case status
when 'success'
'icon_status_success'
+ when 'success_with_warnings'
+ 'icon_status_warning'
when 'failed'
'icon_status_failed'
when 'pending'