summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/mutations/lint_ci.mutation.graphql
blob: 496036f690f39ce08f64623afd6646fee7e175ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
mutation lintCI($endpoint: String, $content: String, $dry: Boolean) {
  lintCI(endpoint: $endpoint, content: $content, dry_run: $dry) @client {
    valid
    errors
    warnings
    jobs {
      afterScript
      allowFailure
      beforeScript
      environment
      except
      name
      only {
        refs
      }
      afterScript
      stage
      tagList
      when
    }
  }
}