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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-09-21 09:24:19 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2018-10-02 18:02:11 +0300
commit1a4f497e6093c8d1005986467c8b752cc61c6629 (patch)
tree4ad50ce8528809d31af31ea981328a3a86924b5f /lib/gitlab/ci/status/build
parenta7c767f16446f71f6e35a5aa3d2fdc73037fcdf5 (diff)
Update pipelines and stages status as well
Diffstat (limited to 'lib/gitlab/ci/status/build')
-rw-r--r--lib/gitlab/ci/status/build/scheduled.rb24
1 files changed, 1 insertions, 23 deletions
diff --git a/lib/gitlab/ci/status/build/scheduled.rb b/lib/gitlab/ci/status/build/scheduled.rb
index 010d5e2142f..05a97b1de47 100644
--- a/lib/gitlab/ci/status/build/scheduled.rb
+++ b/lib/gitlab/ci/status/build/scheduled.rb
@@ -3,31 +3,9 @@ module Gitlab
module Status
module Build
class Scheduled < Status::Extended
- ###
- # Core override
- ###
- def text
- s_('CiStatusText|scheduled')
- end
-
- def label
- s_('CiStatusLabel|scheduled')
- end
-
- def icon
- 'timer'
- end
-
- def favicon
- 'favicon_status_scheduled'
- end
-
- ###
- # Extension override
- ###
def illustration
{
- image: 'illustrations/canceled-job_empty.svg',
+ image: 'illustrations/scheduled-job_countdown.svg',
size: 'svg-394',
title: _("This is a scheduled to run in ") + " #{execute_in}",
content: _("This job will automatically run after it's timer finishes. Often they are used for incremental roll-out deploys to production environments. When unscheduled it converts into a manual action.")