From ced8732c3e9ff4e5f345188f6dd2f6422460316d Mon Sep 17 00:00:00 2001
From: Manuel Grabowski <mgrabowski@gitlab.com>
Date: Tue, 10 Oct 2023 11:59:01 +0000
Subject: [PATCH] Explain basics of how a CI job clones the repo

---
 doc/ci/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/ci/index.md b/doc/ci/index.md
index 4b93bec9c341..df5776bc54f8 100644
--- a/doc/ci/index.md
+++ b/doc/ci/index.md
@@ -37,7 +37,7 @@ Use the pipeline editor to edit the `.gitlab-ci.yml` file and test the syntax be
 
 Runners are the agents that run your jobs. These agents can run on physical machines or virtual instances.
 In your `.gitlab-ci.yml` file, you can specify a container image you want to use when running the job.
-The runner loads the image and runs the job either locally or in the container.
+The runner loads the image, clones your project and runs the job either locally or in the container.
 
 If you use GitLab.com, free shared runners are already available for you. And you can register your own
 runners on GitLab.com if you'd like.
-- 
GitLab