diff --git a/Jenkinsfile b/Jenkinsfile index abfc1ff..8d467ab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ #!/usr/bin/env groovy // Reference the GitLab connection name from your Jenkins Global configuration (https://JENKINS_URL/configure, GitLab section) -properties([gitLabConnection('your-gitlab-connection-name')]) +properties([gitLabConnection('test-gitlab-hook')]) node { checkout scm // Jenkins will clone the appropriate git branch, no env vars needed @@ -18,6 +18,7 @@ pipeline { echo "Testing the application..." echo "Testing webhook..." echo "Testing webhook..." + echo "Testing webhook..." } } }