summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/created.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/status/build/created.rb')
-rw-r--r--lib/gitlab/ci/status/build/created.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/gitlab/ci/status/build/created.rb b/lib/gitlab/ci/status/build/created.rb
new file mode 100644
index 00000000000..5be8e9de425
--- /dev/null
+++ b/lib/gitlab/ci/status/build/created.rb
@@ -0,0 +1,22 @@
+module Gitlab
+ module Ci
+ module Status
+ module Build
+ class Created < Status::Extended
+ def illustration
+ {
+ image: 'illustrations/job_not_triggered.svg',
+ size: 'svg-306',
+ title: _('This job has not been triggered yet'),
+ content: _('This job depends on upstream jobs that need to succeed in order for this job to be triggered')
+ }
+ end
+
+ def self.matches?(build, user)
+ build.created?
+ end
+ end
+ end
+ end
+ end
+end