diff --git a/app/graphql/types/ci/runner_job_execution_status_enum.rb b/app/graphql/types/ci/runner_job_execution_status_enum.rb
index 421e1758536ccf4b21c3821c5e38a6853dd137e9..986783bc9abce5e6a04f747dee8cb7865d5dc88b 100644
--- a/app/graphql/types/ci/runner_job_execution_status_enum.rb
+++ b/app/graphql/types/ci/runner_job_execution_status_enum.rb
@@ -7,13 +7,10 @@ class RunnerJobExecutionStatusEnum < BaseEnum
value 'IDLE',
description: "Runner is idle.",
- value: :idle,
- experiment: { milestone: '15.7' }
-
+ value: :idle
value 'ACTIVE',
description: 'Runner is busy.',
- value: :active,
- experiment: { milestone: '17.2' }
+ value: :active
end
end
end
diff --git a/app/graphql/types/ci/runner_manager_type.rb b/app/graphql/types/ci/runner_manager_type.rb
index c1b374756b0d5496bc0ca8f62340f13153065350..de593719b694bddcb05fd61c0a2b7c729a15d8a4 100644
--- a/app/graphql/types/ci/runner_manager_type.rb
+++ b/app/graphql/types/ci/runner_manager_type.rb
@@ -27,8 +27,7 @@ class RunnerManagerType < BaseObject
field :job_execution_status,
Types::Ci::RunnerJobExecutionStatusEnum,
null: true,
- description: 'Job execution status of the runner manager.',
- experiment: { milestone: '16.3' }
+ description: 'Job execution status of the runner manager.'
field :platform_name, GraphQL::Types::String, null: true,
description: 'Platform provided by the runner manager.',
method: :platform
diff --git a/app/graphql/types/ci/runner_type.rb b/app/graphql/types/ci/runner_type.rb
index c400f41d91c339424b802be8088c276d6d38d6da..f0185072948fa02ca1ec19ec7b60a3534db0e840 100644
--- a/app/graphql/types/ci/runner_type.rb
+++ b/app/graphql/types/ci/runner_type.rb
@@ -61,8 +61,7 @@ class RunnerType < BaseObject
field :job_execution_status,
Types::Ci::RunnerJobExecutionStatusEnum,
null: true,
- description: 'Job execution status of the runner.',
- experiment: { milestone: '15.7' }
+ description: 'Job execution status of the runner.'
field :jobs, ::Types::Ci::JobInterface.connection_type, null: true,
description: 'Jobs assigned to the runner. This field can only be resolved for one runner in any single request.',
authorize: :read_builds,
diff --git a/doc/api/graphql/reference/_index.md b/doc/api/graphql/reference/_index.md
index 25b9507eecdb4984a3ac3ee62fd8b173211f03a9..be2e954c55dee338b8e5deef8cf1aad0cadb381b 100644
--- a/doc/api/graphql/reference/_index.md
+++ b/doc/api/graphql/reference/_index.md
@@ -23154,7 +23154,7 @@ CI/CD variables for a project.
| `ephemeralRegisterUrl` {{< icon name="warning-solid" >}} | [`String`](#string) | **Introduced** in GitLab 15.11. **Status**: Experiment. URL of the registration page of the runner manager. Only available for the creator of the runner for a limited time during registration. |
| `groups` | [`GroupInterfaceConnection`](#groupinterfaceconnection) | Groups the runner is associated with. For group runners only. (see [Connections](#connections)) |
| `id` | [`CiRunnerID!`](#cirunnerid) | ID of the runner. |
-| `jobExecutionStatus` {{< icon name="warning-solid" >}} | [`CiRunnerJobExecutionStatus`](#cirunnerjobexecutionstatus) | **Introduced** in GitLab 15.7. **Status**: Experiment. Job execution status of the runner. |
+| `jobExecutionStatus` | [`CiRunnerJobExecutionStatus`](#cirunnerjobexecutionstatus) | Job execution status of the runner. |
| `locked` | [`Boolean`](#boolean) | Indicates the runner is locked. |
| `maintenanceNote` | [`String`](#string) | Runner's maintenance notes. |
| `maintenanceNoteHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `maintenance_note`. |
@@ -23333,7 +23333,7 @@ Returns [`[CiRunnerCloudProvisioningStep!]`](#cirunnercloudprovisioningstep).
| `executorName` | [`String`](#string) | Executor last advertised by the runner. |
| `id` | [`CiRunnerManagerID!`](#cirunnermanagerid) | ID of the runner manager. |
| `ipAddress` | [`String`](#string) | IP address of the runner manager. |
-| `jobExecutionStatus` {{< icon name="warning-solid" >}} | [`CiRunnerJobExecutionStatus`](#cirunnerjobexecutionstatus) | **Introduced** in GitLab 16.3. **Status**: Experiment. Job execution status of the runner manager. |
+| `jobExecutionStatus` | [`CiRunnerJobExecutionStatus`](#cirunnerjobexecutionstatus) | Job execution status of the runner manager. |
| `platformName` | [`String`](#string) | Platform provided by the runner manager. |
| `revision` | [`String`](#string) | Revision of the runner. |
| `runner` | [`CiRunner`](#cirunner) | Runner configuration for the runner manager. |
@@ -42817,8 +42817,8 @@ Runner cloud provider.
| Value | Description |
| ----- | ----------- |
-| `ACTIVE` {{< icon name="warning-solid" >}} | **Introduced** in GitLab 17.2. **Status**: Experiment. Runner is busy. |
-| `IDLE` {{< icon name="warning-solid" >}} | **Introduced** in GitLab 15.7. **Status**: Experiment. Runner is idle. |
+| `ACTIVE` | Runner is busy. |
+| `IDLE` | Runner is idle. |
### `CiRunnerMembershipFilter`