debian-mirror-gitlab/app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql
2021-03-08 18:12:59 +05:30

34 lines
577 B
GraphQL

fragment PipelineStagesConnection on CiConfigStageConnection {
nodes {
name
groups {
nodes {
name
size
jobs {
nodes {
name
script
beforeScript
afterScript
environment
allowFailure
tags
when
only {
refs
}
except {
refs
}
needs {
nodes {
name
}
}
}
}
}
}
}
}