Merge branch 'add-dst-support-to-pipeline-schedule' into 'master'

Add daylight saving time support for pipeline schedules

Closes #37165

See merge request gitlab-org/gitlab-ce!20145
This commit is contained in:
Kamil Trzciński 2018-07-10 15:22:13 +00:00
commit 49d7f92fd7
2 changed files with 6 additions and 1 deletions

View file

@ -3,7 +3,7 @@ module PipelineSchedulesHelper
ActiveSupport::TimeZone.all.map do |timezone|
{
name: timezone.name,
offset: timezone.utc_offset,
offset: timezone.now.utc_offset,
identifier: timezone.tzinfo.identifier
}
end

View file

@ -0,0 +1,5 @@
---
title: Add support for daylight savings time to pipleline schedules
merge_request: 20145
author:
type: fixed