I cannot get the \"included regions\" feature to work in Jenkins with the Git plugin. I want a job only to be built when there a changes in \"his\" directory. Example: the proje
I just had this problem, and the answer was slightly different than the other answers. That being said, the solution lay in the question itself. For me, I had paths in the "Included Regions" with the pattern:
service/Search/AbstractSearchServices/master/**/*
I changed the pattern to:
service/Search/AbstractSearchServices/master/.*
Once I changed to that pattern, it worked perfectly for me.