I have the access token for Gitlab and configured it in Jenkins. I now want to add a task in Jenkins that uses my token and uses the JenkinsFile from my project, is there any way I can configure the webhook without going to gitlab? Can Jenkins use my JenkinsFile, and and any plugins, to automatically create the webhook?
I noticed this paragraph in my Jenkinsfile:
triggers {
gitlab(triggerOnPush: true, triggerOnMergeRequest: true, branchFilterType: 'All')
}
Is this using a plugin that will automatically create the webhook?