Welcome to mirror list, hosted at ThFree Co, Russian Federation.

created.rb « build « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92485392136b4d9a290e6839679a12fb5243ba5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Build
        class Created < Status::Extended
          def illustration
            {
              image: 'illustrations/empty-state/empty-job-not-triggered-md.svg',
              size: '',
              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