summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/created.rb
blob: 5be8e9de425ef93d02e4bfb4bc436f02cf07a8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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