claya
claya

Reputation: 2020

Is there a way to configure a view of builds that I started in Jenkins?

We have 'try' build jobs that developers can initiate with parameterized variables to point to a particular branch for pulling the code and trial running the build in jenkins. Is there a way I can customize a custom personal view showing only the builds that I have started?

Upvotes: 1

Views: 245

Answers (1)

Miguel Ortiz
Miguel Ortiz

Reputation: 1482

The custom way

I think there's a way to customize a personal view by coding / modifying your Jenkins installation, jan-molak worked on that feature here.

job_filter_by_user

You can check the commits and maybe implement something by your own, especially this and this.

The plugin

Take a look on View Job Filter If you configure it, there are options which seems to acomplish what you want:

Logged-in User Relevance Filter: This adds/removes jobs based on their relevance to the logged in user. For example: matching jobs that were started by the user, or where the user committed changes to the source code of the job; matching jobs with a name that contains the user’s name or login id.

Filter by building

match by user

Upvotes: 1

Related Questions