summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/pipeline/success_with_warnings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/status/pipeline/success_with_warnings.rb')
-rw-r--r--lib/gitlab/ci/status/pipeline/success_with_warnings.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/gitlab/ci/status/pipeline/success_with_warnings.rb b/lib/gitlab/ci/status/pipeline/success_with_warnings.rb
new file mode 100644
index 00000000000..a7c98f9e909
--- /dev/null
+++ b/lib/gitlab/ci/status/pipeline/success_with_warnings.rb
@@ -0,0 +1,31 @@
+module Gitlab
+ module Ci
+ module Status
+ module Pipeline
+ class SuccessWithWarnings < SimpleDelegator
+ include Status::Extended
+
+ def text
+ 'passed'
+ end
+
+ def label
+ 'passed with warnings'
+ end
+
+ def icon
+ 'icon_status_warning'
+ end
+
+ def to_s
+ 'success_with_warnings'
+ end
+
+ def self.matches?(pipeline, user)
+ pipeline.success? && pipeline.has_warnings?
+ end
+ end
+ end
+ end
+ end
+end