debian-mirror-gitlab/lib/gitlab/ci/status/pipeline/blocked.rb

22 lines
366 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module Gitlab
module Ci
module Status
module Pipeline
class Blocked < Status::Extended
def text
'blocked'
end
def label
'waiting for manual action'
end
def self.matches?(pipeline, user)
pipeline.blocked?
end
end
end
end
end
end