gitlab-ce/lib/gitlab/ci/status/build/manual.rb

25 lines
697 B
Ruby

module Gitlab
module Ci
module Status
module Build
class Manual < Status::Extended
def illustration
{
image: 'illustrations/manual_action.svg',
size: 'svg-394',
title: _('This job requires a manual action'),
content: _('This job depends on a user to trigger its process. Often they are used to deploy code to production environments'),
action_path: play_project_job_path(subject.project, subject),
action_method: :post
}
end
def self.matches?(build, user)
build.playable?
end
end
end
end
end
end