From 9d9fb4a1f4312565e59e4ace92e09078446fefa0 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 4 Jul 2023 16:45:57 +0000 Subject: [PATCH 01/27] Add files via upload --- Jenkinsfile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..672da88 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,33 @@ +pipeline { + agent { + label 'slave1' +} + + stages { + stage('Git checkout') { + steps { + echo 'We are now checking out the git repository' + git 'https://github.com/rohith-marigowda/javaProject.git' + } + } + stage('Build project') { + steps { + echo 'Build the above code using maven' + sh 'mvn clean install' + } + } + stage('Push artifactory') { + steps { + echo 'Once the package is created using build tools, push the artifactory to nexus or jfrogg' + echo 'Note: We are not pushing any of our artifacts into maven remote repository' + } + } + + stage('Deploy') { + steps { + echo 'deploy the artifactories into the environments' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/*.war /opt/apache*/webapps/' + } + } + } +} From 87d22bf15e66b07eedfa34aae17430d3f999cc32 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 4 Jul 2023 22:18:05 +0530 Subject: [PATCH 02/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 6f34589..54f607a 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggers +THis is to test POLL SCM Triggering From 004caf177dc8ea9a548f0b0709509cd4f401c0d6 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 4 Jul 2023 22:24:11 +0530 Subject: [PATCH 03/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 54f607a..5d06387 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering +THis is to test POLL SCM Triggering check From 64f1c0ca887a66b23b0b9b52aa74fe35d55d882e Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 4 Jul 2023 23:14:08 +0530 Subject: [PATCH 04/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 5d06387..41817ec 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check +THis is to test POLL SCM Triggering check - test From a71165811c20201d0db8c829a53b5de694ee5d67 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Thu, 6 Jul 2023 22:08:17 +0530 Subject: [PATCH 05/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 41817ec..d012b86 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test +THis is to test POLL SCM Triggering check - test master From 4a695fc7e2fbd6207f1656e75dace0843f8c0be9 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Thu, 6 Jul 2023 22:19:18 +0530 Subject: [PATCH 06/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index d012b86..5c02871 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master +THis is to test POLL SCM Triggering check - test master. From f8ca25768d40092fc89ef001107281a9565af141 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Thu, 6 Jul 2023 22:19:50 +0530 Subject: [PATCH 07/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 5c02871..0f543fd 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master. +THis is to test POLL SCM Triggering check - test master.. From dc12bceee945e5b2cbb5be902be14304e4344696 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 00:07:57 +0530 Subject: [PATCH 08/27] Update Jenkinsfile --- Jenkinsfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 672da88..772017d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,5 +29,15 @@ pipeline { sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/*.war /opt/apache*/webapps/' } } + + stage('Master Branch Job') { + when { + branch 'master' + } + steps { + echo 'deploy the artifactories into the master environments' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache*/webapps/' + } + } } } From c8a47e44b6553a4ef1d4aa2cf912acb875776fc2 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 00:10:52 +0530 Subject: [PATCH 09/27] Update Jenkinsfile --- Jenkinsfile | 56 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 23 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 772017d..c270bbc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,37 +3,47 @@ pipeline { label 'slave1' } - stages { - stage('Git checkout') { + // stages { + // stage('Git checkout') { + // steps { + // echo 'We are now checking out the git repository' + // git 'https://github.com/rohith-marigowda/javaProject.git' + // } + // } + // stage('Build project') { + // steps { + // echo 'Build the above code using maven' + // sh 'mvn clean install' + // } + // } + // stage('Push artifactory') { + // steps { + // echo 'Once the package is created using build tools, push the artifactory to nexus or jfrogg' + // echo 'Note: We are not pushing any of our artifacts into maven remote repository' + // } + // } + + //stage('Deploy') { + //steps { + // echo 'deploy the artifactories into the environments' + // sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/*.war /opt/apache*/webapps/' + // } + // } + + stage('Master Branch Job') { + when { + branch 'master' + } steps { echo 'We are now checking out the git repository' git 'https://github.com/rohith-marigowda/javaProject.git' } - } - stage('Build project') { + steps { - echo 'Build the above code using maven' + echo 'Build the above code using maven' sh 'mvn clean install' } - } - stage('Push artifactory') { - steps { - echo 'Once the package is created using build tools, push the artifactory to nexus or jfrogg' - echo 'Note: We are not pushing any of our artifacts into maven remote repository' - } - } - - stage('Deploy') { - steps { - echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/*.war /opt/apache*/webapps/' - } - } - stage('Master Branch Job') { - when { - branch 'master' - } steps { echo 'deploy the artifactories into the master environments' sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache*/webapps/' From 34e0ce4fdb843426976e5e4e3ad949bd09637eb4 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 00:12:47 +0530 Subject: [PATCH 10/27] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c270bbc..cdb5a86 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { label 'slave1' } - // stages { + stages { // stage('Git checkout') { // steps { // echo 'We are now checking out the git repository' @@ -49,5 +49,5 @@ pipeline { sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache*/webapps/' } } - } + } } From 3bcd412a3e2e38618a735e81bf94dd8b77c8a131 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:05:22 +0530 Subject: [PATCH 11/27] Update Jenkinsfile --- Jenkinsfile | 59 ++++++++++++++++------------------------------------- 1 file changed, 18 insertions(+), 41 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cdb5a86..71370a7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,53 +1,30 @@ pipeline { - agent { - label 'slave1' -} - + agent any stages { - // stage('Git checkout') { - // steps { - // echo 'We are now checking out the git repository' - // git 'https://github.com/rohith-marigowda/javaProject.git' - // } - // } - // stage('Build project') { - // steps { - // echo 'Build the above code using maven' - // sh 'mvn clean install' - // } - // } - // stage('Push artifactory') { - // steps { - // echo 'Once the package is created using build tools, push the artifactory to nexus or jfrogg' - // echo 'Note: We are not pushing any of our artifacts into maven remote repository' - // } - // } - - //stage('Deploy') { - //steps { - // echo 'deploy the artifactories into the environments' - // sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/*.war /opt/apache*/webapps/' - // } - // } - - stage('Master Branch Job') { - when { - branch 'master' - } + stage('Git checkout') { steps { echo 'We are now checking out the git repository' git 'https://github.com/rohith-marigowda/javaProject.git' } - + } + stage('Build project') { steps { - echo 'Build the above code using maven' + echo 'Build the above code using maven' sh 'mvn clean install' } - - steps { - echo 'deploy the artifactories into the master environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache*/webapps/' + } + stage('Push artifactory') { + steps { + echo 'Once the package is created using build tools, push the artifactory to nexus or jfrogg' + echo 'Note: We are not pushing any of our artifacts into maven remote repository' + } + } + + stage('Deploy') { + steps { + echo 'deploy the artifactories into the environments' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/.war /opt/apache/webapps/' + } } } - } } From 6d78aa9d958e4ccc0174bd9e472e073cc01cbcdb Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:11:10 +0530 Subject: [PATCH 12/27] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 71370a7..20bc1db 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { stage('Deploy') { steps { echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd/target/.war /opt/apache/webapps/' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/.war /opt/apache/webapps/' } } } From b63286b9b62f09b020bd669fdc9572730d2482be Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:19:08 +0530 Subject: [PATCH 13/27] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 20bc1db..ba338af 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stage('Build project') { steps { echo 'Build the above code using maven' - sh 'mvn clean install' + sh 'mvn clean install' } } stage('Push artifactory') { From ffa3e7562fcd694b4ec8c8ee29b6c81da7b8e8ba Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:22:18 +0530 Subject: [PATCH 14/27] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ba338af..1de389d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { stage('Deploy') { steps { echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/.war /opt/apache/webapps/' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/.war /opt/apache-tomcat-9.*/webapps/' } } } From a0946a96a6a4cc8da4c0c5e9da66cf7b5e858b54 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:24:44 +0530 Subject: [PATCH 15/27] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1de389d..abc7092 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { stage('Git checkout') { steps { echo 'We are now checking out the git repository' - git 'https://github.com/rohith-marigowda/javaProject.git' + git 'https://github.com/rohith-marigowda/javaProject.git' } } stage('Build project') { From 76768ac4f6bbb280a2648dbeddd63df308ddb25e Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:28:24 +0530 Subject: [PATCH 16/27] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index abc7092..bbfb8e3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { stage('Deploy') { steps { echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/.war /opt/apache-tomcat-9.*/webapps/' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' } } } From 49143a630b206ce17234710a3fed2a62d0b5aaae Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:40:30 +0530 Subject: [PATCH 17/27] Update Jenkinsfile --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index bbfb8e3..8e5a886 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,6 +22,7 @@ pipeline { stage('Deploy') { steps { + echo 'deploy the artifactories into the environments' sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' } From f7dfc51ca0753fa2390ae8f7dac6c03a42989db8 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:41:31 +0530 Subject: [PATCH 18/27] Update Jenkinsfile --- Jenkinsfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8e5a886..bbfb8e3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,6 @@ pipeline { stage('Deploy') { steps { - echo 'deploy the artifactories into the environments' sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' } From a7dc15dd9bf6fbce53d9f5ce6ad6babe13f1167f Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:43:03 +0530 Subject: [PATCH 19/27] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bbfb8e3..1b45e2a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { stage('Deploy') { steps { echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' } } } From 2c8b8032fc6c6b222a059d3023f078cff150affc Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Mon, 10 Jul 2023 20:46:43 +0530 Subject: [PATCH 20/27] Update Jenkinsfile --- Jenkinsfile | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1b45e2a..d7f0341 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,11 +20,29 @@ pipeline { } } - stage('Deploy') { + //stage('Deploy') { + //steps { + //echo 'deploy the artifactories into the environments' + // sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' + // } + // } + stage('Deploy to master') { + when { + branch "master" + } steps { echo 'deploy the artifactories into the environments' sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' } } + stage('Deploy to release branch') { + when { + branch "release/*" + } + steps { + echo 'deploy the artifactories into the environments' + sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_release_2.0/target/*.war /opt/apache-tomcat-9.*/webapps/' + } + } } } From 368278b7d43eec4f55084467b05f5c187d2e9dc2 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Mon, 10 Jul 2023 20:48:12 +0530 Subject: [PATCH 21/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 0f543fd..059eba6 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master.. +THis is to test POLL SCM Triggering check - test master... From fdc7612bcc721bc2680a25ee7168b0439b3e24ca Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Mon, 10 Jul 2023 23:50:09 +0530 Subject: [PATCH 22/27] Update Jenkinsfile --- Jenkinsfile | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d7f0341..1ba9e6b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,41 +7,20 @@ pipeline { git 'https://github.com/rohith-marigowda/javaProject.git' } } - stage('Build project') { - steps { - echo 'Build the above code using maven' - sh 'mvn clean install' - } - } - stage('Push artifactory') { - steps { - echo 'Once the package is created using build tools, push the artifactory to nexus or jfrogg' - echo 'Note: We are not pushing any of our artifacts into maven remote repository' - } - } - - //stage('Deploy') { - //steps { - //echo 'deploy the artifactories into the environments' - // sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' - // } - // } - stage('Deploy to master') { + stage('masterBranch') { when { branch "master" } steps { - echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_master/target/*.war /opt/apache-tomcat-9.*/webapps/' + echo 'Trigger the test cases when code is pushed to master branch' } } - stage('Deploy to release branch') { + stage('releaseBranch') { when { branch "release/*" } steps { - echo 'deploy the artifactories into the environments' - sh 'sudo cp /home/ec2-user/jenkins/workspace/cicd_release_2.0/target/*.war /opt/apache-tomcat-9.*/webapps/' + echo 'Trigger the test cases when code is pushed to release branch' } } } From 7245407860a68931c508ddb48bf00e0e68583ede Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 11 Jul 2023 04:36:44 +0000 Subject: [PATCH 23/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 059eba6..e5a492e 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master... +THis is to test POLL SCM Triggering check - test master.... From f770f1daa9081d98f9219c26dce885e004eac6bc Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 12 Sep 2023 22:43:03 +0530 Subject: [PATCH 24/27] test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index e5a492e..04e06aa 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master.... +THis is to test POLL SCM Triggering check - test master....... From 5b048962e0f72be8bb8070ab4bb0961ab343c02c Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 12 Sep 2023 22:46:24 +0530 Subject: [PATCH 25/27] Update test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 04e06aa..3c3e45b 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master....... +THis is to test POLL SCM Triggering check - test master.......... From 8ec919152b611a4f0c76347a12c25d5aec539e38 Mon Sep 17 00:00:00 2001 From: rohith-marigowda <61956491+rohith-marigowda@users.noreply.github.com> Date: Tue, 12 Sep 2023 22:47:19 +0530 Subject: [PATCH 26/27] Rohith --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 3c3e45b..1e18f71 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master.......... +THis is to test POLL SCM Triggering check - test master............ From b9cc960a527b8c10404d4cd8f5aa2fb91eaf5262 Mon Sep 17 00:00:00 2001 From: syedafzal859 <142865181+syedafzal859@users.noreply.github.com> Date: Wed, 13 Sep 2023 00:03:51 +0530 Subject: [PATCH 27/27] test --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 1e18f71..abcc3c1 100644 --- a/test +++ b/test @@ -1 +1 @@ -THis is to test POLL SCM Triggering check - test master............ +THis is to test POLL SCM Triggering check - test master...........