From d7da5e63a7b89fb6711f5e9ef4eeb3ec6b7b2e5e Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Fri, 19 Feb 2021 17:08:31 +0530 Subject: [PATCH 1/7] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 016d6a4..3a8ce58 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # BranchingandMergingDemo Repository to Demo Branching and Merging +Test for PR From 91eeb57a41f84eff8bd27816bb1dc370e8dcb090 Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Fri, 19 Feb 2021 21:02:18 +0530 Subject: [PATCH 2/7] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 016d6a4..a9c7f37 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # BranchingandMergingDemo Repository to Demo Branching and Merging +hello From d64e7fc8503abf3961e8c4ace979a335fd947126 Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Sun, 21 Feb 2021 00:03:17 +0530 Subject: [PATCH 3/7] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 016d6a4..a9c7f37 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # BranchingandMergingDemo Repository to Demo Branching and Merging +hello From 5147be29000777140aed9f6847801efdb7db7810 Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Sun, 21 Feb 2021 00:19:51 +0530 Subject: [PATCH 4/7] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 016d6a4..bcaf4a1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # BranchingandMergingDemo Repository to Demo Branching and Merging + + +12345 From 02d30f77f623036c0075b587e5576e8c9ecd24bc Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Sun, 21 Feb 2021 20:43:30 +0530 Subject: [PATCH 5/7] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cb263d9..2b2cbb2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,7 @@ node } sh """chmod +x HelloWorld.sh - ./HelloWorld.sh""" + echo "Hi man looks its working" """" } } From 1beed3c847ad596b1e46afaf5c387efc332f1c6f Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Sun, 21 Feb 2021 20:50:19 +0530 Subject: [PATCH 6/7] Update Jenkinsfile --- Jenkinsfile | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2b2cbb2..71a8517 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,25 +6,8 @@ node } stage('deploy') { - echo 'branch name ' + env.BRANCH_NAME + echo "Hello Kent" - if (env.BRANCH_NAME.startsWith("Feature_")) - { - echo "Deploying to Dev environment after build" - } - - else if (env.BRANCH_NAME.startsWith("Release_")) - { - echo "Deploying to Stage after build and Dev Deployment" - } - - else if (env.BRANCH_NAME.startsWith("master")) - { - echo "Deploying to PROD environment" - } - - sh """chmod +x HelloWorld.sh - echo "Hi man looks its working" """" - + } } From 56413dd1320377ab8b063e977a240e310a43639e Mon Sep 17 00:00:00 2001 From: yoyogokiran <79196071+yoyogokiran@users.noreply.github.com> Date: Sun, 21 Feb 2021 21:16:13 +0530 Subject: [PATCH 7/7] Update Jenkinsfile --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 71a8517..b55f010 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,5 @@ node stage('deploy') { echo "Hello Kent" - - } }