From 95681819c1212151dc8c9dd60c2604ddcd03eee0 Mon Sep 17 00:00:00 2001 From: Chris McCafferty <cilefen@gmail.com> Date: Tue, 24 Nov 2020 17:23:02 -0500 Subject: [PATCH] Fix an invalid schedule example (#7807) --- docs/usage/configuration-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index 0da10cb3e8..a73a5d408d 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -1698,7 +1698,7 @@ You could then configure a schedule like this at the repository level: ```json { - "schedule": ["after 10pm and before 5am on every weekday", "every weekend"] + "schedule": ["after 10pm and before 5am every weekday", "every weekend"] } ``` -- GitLab