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

lint_ci.mutation.graphql « client « mutations « graphql « pipeline_editor « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d42ebb6ac376e438c6ade89b41ccc63dfc86aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
      }
      stage
      tags
      when
    }
  }
}