gitlab-org--gitlab-foss/app/assets/javascripts/pipeline_editor/graphql/mutations/lint_ci.mutation.graphql

23 lines
385 B
GraphQL

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
tags
when
}
}
}