Jenkins create a view of build jobs where built from branch

Viewed 101

In jenkins, I created a view of builds jobs. I want to specify only builds from a particular branch. Is there way to parameterized or set the branch name so it will only return the latest builds of the branch name provided?

1 Answers

You should be able to do this with the View Job Filters plugin. From the description:

This plug-in provides more ways to include/exclude jobs from a view, including filtering by SCM path [...]

E.g., this will select all trunk-related jobs:

enter image description here

Related