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

pending.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: 9dd9a27ad57401740344f6218f7dc3c792b37176 (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 Pending < Status::Extended
          def illustration
            {
              image: 'illustrations/pending_job_empty.svg',
              size: 'svg-430',
              title: _('This job has not started yet'),
              content: _('This job is in pending state and is waiting to be picked by a runner')
            }
          end

          def self.matches?(build, user)
            build.pending?
          end
        end
      end
    end
  end
end