start_in is limited to 1 day when it is advertised to only be limited to 1 week

Summary

The start_in is limited to 1 day when it is advertised to only be limited to 1 week.

Steps to reproduce

The start_in documented on https://docs.gitlab.com/ee/ci/yaml/ says the following:

...start_in key must be less than or equal to one week. Examples of valid values include:

  • '5'
  • 10 seconds
  • 30 minutes
  • 1 day
  • 1 week

However, a validation error is thrown when the time is longer than 1 day.

What is the current bug behavior?

A CI Lint error is thrown: job start in should not exceed the limit

What is the expected correct behavior?

CI Lint should not throw that error for values up to 1 week.

Possible fixes

This appears to fix the issue: https://gitlab.com/gitlab-org/gitlab-foss/blob/a98649b71085bcd21af674a47d6a746336c56a65/spec/lib/gitlab/ci/config/entry/job_spec.rb

What version of Gitlab-ee will this get released in?