Remove license check from Merge job

Change-Id: Ie6d6ee1f4a05eab80cb7bf76b18849f5226c7c37
Signed-off-by: madavi <jm00553988@techmahindra.com>
diff --git a/jenkins/ci-pipelines/ci_stage_2.groovy b/jenkins/ci-pipelines/ci_stage_2.groovy
index ddbd80a..18de85f 100644
--- a/jenkins/ci-pipelines/ci_stage_2.groovy
+++ b/jenkins/ci-pipelines/ci_stage_2.groovy
@@ -39,7 +39,12 @@
     }
 
     stage('License Scan') {
+      if (!JOB_NAME.contains('merge')) {
         sh "devops/tools/license_scan.sh"
+      } 
+      else {
+        Println("skip the scan for merge")
+      }
     }
 
     container_name = "${project}-${branch}".toLowerCase()