From cfcded537b2975c9405c0945c6dcd28db4bd9619 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Mon, 22 Feb 2021 01:58:04 +0100 Subject: [PATCH] Added cron trigger for build --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index a0107a0..271ad9e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,6 +3,9 @@ String[] ImgVariantList = ['Default-minmal', 'Default-default'] pipeline { agent { label 'LXCBuilder' } + triggers { + cron '@monthly' + } parameters { booleanParam defaultValue: true, description: 'Builds Default images', name: 'BuildDefault' booleanParam defaultValue: false, description: 'Builds Extra images', name: 'BuildExtra'