I have a git repository where I have created two different jobs in Jenkins (one for production code and one for tools). Where both jobs always are triggered!
I have added Excluded Regions for each jobs to only trigger on each correct folder.
Our git root folder contains the following:
/src/
/tools/
/test/
/doc/
/third party/
In my Source job in Jenkins I have the following Excluded Regions
/tools/.*
/Test Projects/.*
/doc/.*
In my tools job I have the folling Excluded Regions
/src/.*
/Test Projects/.*
/doc/.*
The problem is that if I push a change in doc-folder both jobs are triggered. I don't have any include regions either.