feat(config-ui): displays the name of the DORA task
diff --git a/config-ui/src/components/pipelines/StageTaskName.jsx b/config-ui/src/components/pipelines/StageTaskName.jsx
index c2b7201..8ad33d1 100644
--- a/config-ui/src/components/pipelines/StageTaskName.jsx
+++ b/config-ui/src/components/pipelines/StageTaskName.jsx
@@ -72,7 +72,8 @@
           {task.plugin === Providers.GITLAB && (
             <>Project ID {task.options.projectId}</>
           )}
-          {task.plugin === Providers.GITEXTRACTOR && <>{task.options.repoId}</>}
+          {task.plugin === Providers.GITEXTRACTOR ||
+            (task.plugin === Providers.DORA && <>{task.options.repoId}</>)}
         </span>
         <>
           <div
diff --git a/config-ui/src/data/Providers.js b/config-ui/src/data/Providers.js
index e26c1c3..9c4f4d7 100644
--- a/config-ui/src/data/Providers.js
+++ b/config-ui/src/data/Providers.js
@@ -40,7 +40,8 @@
   AE: 'ae',
   DBT: 'dbt',
   STARROCKS: 'starrocks',
-  TAPD: 'tapd'
+  TAPD: 'tapd',
+  DORA: 'dora'
 }
 
 const ProviderTypes = {
@@ -61,7 +62,8 @@
   AE: 'Analysis Engine (AE)',
   DBT: 'Data Build Tool (DBT)',
   STARROCKS: 'StarRocks',
-  TAPD: 'TAPD'
+  TAPD: 'TAPD',
+  DORA: 'DORA'
 }
 
 const ProviderConnectionLimits = {