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

freeze_periods.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de48c2076c8fd97471d3a2d91e69ac2f380c79b1 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_freeze_period, class: 'Ci::FreezePeriod' do
    project
    freeze_start { '0 23 * * 5' }
    freeze_end { '0 7 * * 1' }
    cron_timezone { 'UTC' }
  end
end