jenkinsci / jenkinsci/git-plugin

[JENKINS-28032] Included Regions do not work when monitoring all branches

Open
#2,645 8 comments 0 reactions 0 assignees View on GitHub
component:git-plugin imported-jira-issue priority:minor resolution:unresolved
Dominant language
Java
Stars
694
Forks
1.1k
Avg merge
1h 29m
Merged PRs (30d)
3

Description

Set up a job to monitor all branches ('**' in 'Branches to build') but restrict it to one folder ('Project1/.*' in 'Included Regions').

As long as you make submissions to one branch, the included regions works fine.

However, when you make a change on a different branch, the first job that triggers will ignore included regions and pick up changes from any location. After that the next jobs on the same branch will follow the restrictions correctly until a change on another branch is made.

Here's part of my config.xml:



2





git@​github.com:SomeAccount/1.git

ff33d8db-ec3a-48d2-83cd-6d5cbd8f51a4









**





false







Project1/.*







Here's a part of the 'GitHub Hook log':

Seen 51 remote branches

> /usr/bin/git log --full-history --no-abbrev --format=raw -M -m --raw [edited change A] ..[edited change B] # timeout=10

Ignored commit [edited change B]: Found only excluded paths:

Done. Took 1.2 sec

Changes found

---
Originally reported by jsniecikowski, imported from: Included Regions do not work when monitoring all branches


  • status: Open
  • priority: Minor
  • component(s): git-plugin
  • label(s): git, jenkins, plugin
  • resolution: Unresolved
  • votes: 3
  • watchers: 7
  • imported: 2025-12-02

Raw content of original issue

Set up a job to monitor all branches ('**' in 'Branches to build') but restrict it to one folder ('Project1/.*' in 'Included Regions').

As long as you make submissions to one branch, the included regions works fine.
However, when you make a change on a different branch, the first job that triggers will ignore included regions and pick up changes from any location. After that the next jobs on the same branch will follow the restrictions correctly until a change on another branch is made.

Here's part of my config.xml:

<scm class="hudson.plugins.git.GitSCM" plugin="git@2.3.5">
<configVersion>2</configVersion>
<userRemoteConfigs>
<hudson.plugins.git.UserRemoteConfig>
<url>git@github.com:SomeAccount/1.git</url>
<credentialsId>ff33d8db-ec3a-48d2-83cd-6d5cbd8f51a4</credentialsId>
</hudson.plugins.git.UserRemoteConfig>
</userRemoteConfigs>
<branches>
<hudson.plugins.git.BranchSpec>
<name>**</name>
</hudson.plugins.git.BranchSpec>
</branches>
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
<submoduleCfg class="list"/>
<extensions>
<hudson.plugins.git.extensions.impl.PathRestriction>
<includedRegions>Project1/.*</includedRegions>
<excludedRegions></excludedRegions>
</hudson.plugins.git.extensions.impl.PathRestriction>
</extensions>
</scm>

Here's a part of the 'GitHub Hook log':
Seen 51 remote branches
> /usr/bin/git log --full-history --no-abbrev --format=raw -M -m --raw [edited change A] ..[edited change B] # timeout=10
Ignored commit [edited change B]: Found only excluded paths:
Done. Took 1.2 sec
Changes found

  • environment: Jenkins 1.608, Git plugin 2.3.5

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.