From e8a1ae0365a396a6466bc9e1aa3756da7baf1ba8 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 31 Oct 2022 10:17:45 -0500 Subject: [PATCH] draft: schedule to run monthly --- ci/Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index c32aed6..a813f57 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -16,9 +16,16 @@ pipeline { disableConcurrentBuilds() } + triggers { + cron 'TZ=America/Chicago\n20 10 31 10 *' + } + parameters { booleanParam \ name: 'Clean', + defaultValue: currentBuild.getBuildCauses( + 'hudson.triggers.timerTrigger$TimerTriggerCause' + ).size(), description: 'Clean the workspace and perform a full rebuild' }