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

pipeline.graphql « client « queries « graphql « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3a7387ad2dc4d3a3163f782a05c0fea40fff2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query getPipeline($fullPath: ID!, $sha: String!) {
  project(fullPath: $fullPath) {
    pipeline(sha: $sha) {
      commitPath
      id
      iid
      status
      detailedStatus {
        detailsPath
        icon
        group
        text
      }
    }
  }
}