aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Rendina <rendinam@users.noreply.github.com>2019-07-03 12:29:40 -0400
committerGitHub <noreply@github.com>2019-07-03 12:29:40 -0400
commit3df6bdd59d41375290991963df25583a84e7db65 (patch)
tree860deb92c1645ae5974b2f2a9bb5427a70bca3bd /src
parent823b70dd375ca29becf4f65a69e45c1f7910c425 (diff)
downloadjscu_refactor-3df6bdd59d41375290991963df25583a84e7db65.tar.gz
Add missing day of week in default scheduling list; expand related docs (#59)1.3.22
* Add missing day of week in default list. * Edit day of week docs
Diffstat (limited to 'src')
-rw-r--r--src/BuildConfig.groovy5
1 files changed, 3 insertions, 2 deletions
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 = []