Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_failed_jobs.query.graphql « queries « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1f994ece246f23df46984a6b46d0bd75c3648b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
query getFailedJobs($fullPath: ID!, $pipelineIid: ID!) {
  project(fullPath: $fullPath) {
    id
    pipeline(iid: $pipelineIid) {
      id
      jobs(statuses: FAILED, retried: false, jobKind: BUILD) {
        nodes {
          status
          detailedStatus {
            id
            detailsPath
            group
            icon
            label
            text
            tooltip
            action {
              id
              buttonTitle
              icon
              method
              path
              title
            }
          }
          id
          stage {
            id
            name
          }
          name
          retryable
          userPermissions {
            readBuild
            updateBuild
          }
          trace {
            htmlSummary
          }
          failureMessage
        }
      }
    }
  }
}