Skip to content

Filter runner by creator username

What does this MR do and why?

This MR aims to allow admins to search by runner creator on the admin runners page. This MR includes only the relevant back-end changes.

Part of #378633 (closed)

WIP front-end MR with related discussion: !136330 (merged)

How to set up and validate locally

Make sure you have at least one GitLab runner registered and running.

  1. Go to http://gdk.test:3000/-/graphql-explorer

  2. Use the following query:

    {
      runners(creatorUsername: "root") {
        nodes {
          id,
          createdBy {
            name,
            username,
            id,
          }
        }
      }
    }
  3. The query will return any runners created by user root/1

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Merge request reports