| <a id="pipelineuserpermissions"></a>`userPermissions` | [`PipelinePermissions!`](#pipelinepermissions) | Permissions for the current user on the resource. |
| <a id="pipelineusesneeds"></a>`usesNeeds` | [`Boolean`](#boolean) | Indicates if the pipeline has jobs with `needs` dependencies. |
| <a id="pipelinewarnings"></a>`warnings` | [`Boolean!`](#boolean) | Indicates if a pipeline has warnings. |
#### Fields with arguments
...
...
@@ -13129,6 +13130,15 @@ Represents the Geo sync and verification state of a pipeline artifact.
| <a id="pipelineartifactregistryretrycount"></a>`retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the PipelineArtifactRegistry. |
| <a id="pipelineartifactregistrystate"></a>`state` | [`RegistryState`](#registrystate) | Sync state of the PipelineArtifactRegistry. |
### `PipelineMessage`
#### Fields
| Name | Type | Description |
| ---- | ---- | ----------- |
| <a id="pipelinemessagecontent"></a>`content` | [`String!`](#string) | Content of the pipeline message. |
| <a id="pipelinemessageid"></a>`id` | [`ID!`](#id) | ID of the pipeline message. |
@@ -70,7 +70,7 @@ RSpec.describe Gitlab::Ci::Config::Entry::Root do
it'returns array of types as stages with a warning'do
expect(root.stages_value).toeq%w[test deploy]
expect(root.warnings).toeq(["root `types` is deprecated in 9.0 and will be removed in 15.0 - read more: https://docs.gitlab.com/ee/ci/yaml/#deprecated-keywords"])
expect(root.warnings).tomatch_array(["root `types` is deprecated in 9.0 and will be removed in 15.0."])
@@ -233,7 +233,7 @@ RSpec.describe 'Query.ciConfig' do
it'returns a warning'do
post_graphql_query
expect(graphql_data['ciConfig']['warnings']).toinclude('root `types` is deprecated in 9.0 and will be removed in 15.0 - read more: https://docs.gitlab.com/ee/ci/yaml/#deprecated-keywords')
expect(graphql_data['ciConfig']['warnings']).toinclude('root `types` is deprecated in 9.0 and will be removed in 15.0.')