From 03f9ee77b80cb9ca36eba8c8a2d1953c3acb6e01 Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Thu, 9 Mar 2023 12:18:34 +0100 Subject: [PATCH] modified --- Jenkinsfile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a544aa4..1bdbdd5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -113,19 +113,19 @@ //loopEnvironments(environments) } } - } - - stage('Create Pull Request') { - steps { - script { - def now = new Date() - timestamp = now.format("yyMMdd.HHmm", TimeZone.getTimeZone('UTC')) - dir("/opt/workspace/coco_terraform_config/") { - sh 'git add .' - sh ('git commit -m "${timestamp}"') - sh 'git push origin automatedSLOGeneration' - } + stage('Create Pull Request') { + steps { + script { + def now = new Date() + timestamp = now.format("yyMMdd.HHmm", TimeZone.getTimeZone('UTC')) + + dir("/opt/workspace/coco_terraform_config/") { + sh 'git add .' + sh ('git commit -m "${timestamp}"') + sh 'git push origin automatedSLOGeneration' + } + } } } }