Skip to content

Add failed builds to pipeline type

What does this MR do and why?

Resolves #330380 (closed)

How to set up and validate locally

  1. pull code from gentcys/gitlab:add-failed-builds-to-pipeline-type
  2. start GDK
  3. open browser and view http://you-local-gitlab-address/-/graphql-explorer
  4. input query
    {
        project(fullPath: "You project full path") {
            pipelines {
                edges {
                    nodes {
                        failedBuilds {
                            nodes {
                                name
                                status
                            }
                        }
                    }
                }
            }
        }
    }
  5. click search button

MR acceptance checklist

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

Edited by Cong Chen

Merge request reports