I'm using Jenkins with private git repository manager.I created a multibranch pipeline to do CI.
I have use Basic Branch Build Strategies
plugin to run pipeline when tag push event occurred.I also add Change Request
in the Build Strategies
part.
When i create a merge request on the private git repository manager platform. I can saw the Merge Requests Events
webhook has sent to ${jenkins_url}/git/notifyCommit?url=${git_repo_url}
. But the pipeline doesn't trigger by the merge request event.
I also try use refspec to capture the merge request event with following settings:
It still doesn't work. I'm not familiar with Jenkins. Can you help me how to achieve this object?