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:
commit
49d7f92fd7
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Add support for daylight savings time to pipleline schedules
|
||||
merge_request: 20145
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue