From 53911951611927ae3c44b58357b66c073b896390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Ku=C5=9B?= Date: Mon, 28 Apr 2025 08:48:08 +0200 Subject: [PATCH] triggers { cron('H H 1,6,11,16,21,26 * *') } options { disableConcurrentBuilds() timeout(time: 1, unit: 'HOURS') buildDiscarder(logRotator(numToKeepStr: '10')) } --- deploy-this/lets-encrypt/lets-encrypt-renew.jenkinsfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/deploy-this/lets-encrypt/lets-encrypt-renew.jenkinsfile b/deploy-this/lets-encrypt/lets-encrypt-renew.jenkinsfile index 98647b5..93e274e 100755 --- a/deploy-this/lets-encrypt/lets-encrypt-renew.jenkinsfile +++ b/deploy-this/lets-encrypt/lets-encrypt-renew.jenkinsfile @@ -2,15 +2,14 @@ pipeline { agent any + triggers { + cron('H H 1,6,11,16,21,26 * *') + } + options { disableConcurrentBuilds() timeout(time: 1, unit: 'HOURS') buildDiscarder(logRotator(numToKeepStr: '10')) - - // Konfiguracja harmonogramu - triggers { - cron('H H 1,6,11,16,21,26 * *') - } } stages {