Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
2fcf71d0
Commit
2fcf71d0
authored
Dec 16, 2020
by
lauraMon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add connection type to ci config fields
parent
e110766b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
app/graphql/types/ci/config/config_type.rb
app/graphql/types/ci/config/config_type.rb
+1
-1
app/graphql/types/ci/config/group_type.rb
app/graphql/types/ci/config/group_type.rb
+1
-1
app/graphql/types/ci/config/job_type.rb
app/graphql/types/ci/config/job_type.rb
+1
-1
app/graphql/types/ci/config/stage_type.rb
app/graphql/types/ci/config/stage_type.rb
+1
-1
No files found.
app/graphql/types/ci/config/config_type.rb
View file @
2fcf71d0
...
...
@@ -11,7 +11,7 @@ module Types
description:
'Linting errors'
field
:merged_yaml
,
GraphQL
::
STRING_TYPE
,
null:
true
,
description:
'Merged CI config YAML'
field
:stages
,
[
Types
::
Ci
::
Config
::
StageType
]
,
null:
true
,
field
:stages
,
Types
::
Ci
::
Config
::
StageType
.
connection_type
,
null:
true
,
description:
'Stages of the pipeline'
field
:status
,
Types
::
Ci
::
Config
::
StatusEnum
,
null:
true
,
description:
'Status of linting, can be either valid or invalid'
...
...
app/graphql/types/ci/config/group_type.rb
View file @
2fcf71d0
...
...
@@ -9,7 +9,7 @@ module Types
field
:name
,
GraphQL
::
STRING_TYPE
,
null:
true
,
description:
'Name of the job group'
field
:jobs
,
[
Types
::
Ci
::
Config
::
JobType
]
,
null:
true
,
field
:jobs
,
Types
::
Ci
::
Config
::
JobType
.
connection_type
,
null:
true
,
description:
'Jobs in group'
field
:size
,
GraphQL
::
INT_TYPE
,
null:
true
,
description:
'Size of the job group'
...
...
app/graphql/types/ci/config/job_type.rb
View file @
2fcf71d0
...
...
@@ -13,7 +13,7 @@ module Types
description:
'Name of the job group'
field
:stage
,
GraphQL
::
STRING_TYPE
,
null:
true
,
description:
'Name of the job stage'
field
:needs
,
[
Types
::
Ci
::
Config
::
NeedType
]
,
null:
true
,
field
:needs
,
Types
::
Ci
::
Config
::
NeedType
.
connection_type
,
null:
true
,
description:
'Builds that must complete before the jobs run'
end
end
...
...
app/graphql/types/ci/config/stage_type.rb
View file @
2fcf71d0
...
...
@@ -9,7 +9,7 @@ module Types
field
:name
,
GraphQL
::
STRING_TYPE
,
null:
true
,
description:
'Name of the stage'
field
:groups
,
[
Types
::
Ci
::
Config
::
GroupType
]
,
null:
true
,
field
:groups
,
Types
::
Ci
::
Config
::
GroupType
.
connection_type
,
null:
true
,
description:
'Groups of jobs for the stage'
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment