From 3df6bdd59d41375290991963df25583a84e7db65 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Wed, 3 Jul 2019 12:29:40 -0400 Subject: Add missing day of week in default scheduling list; expand related docs (#59) * Add missing day of week in default list. * Edit day of week docs --- src/BuildConfig.groovy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy index 9bae307..0b3cc06 100644 --- a/src/BuildConfig.groovy +++ b/src/BuildConfig.groovy @@ -25,8 +25,9 @@ class BuildConfig implements Serializable { def skippedUnstableNewThresh = '' def skippedUnstableThresh= '' - // Scheduling - def run_on_days = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri'] + // Scheduling - default behavior is to not restrict run schedule based on + // the day of the week. + def run_on_days = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'] // Private. Not to be used directly by Jenkinsfile. def runtime = [] -- cgit