diff --git a/src/data/nav.yaml b/src/data/nav.yaml
index 204bbd4c..1a68300c 100644
--- a/src/data/nav.yaml
+++ b/src/data/nav.yaml
@@ -117,6 +117,8 @@
path: /docs/manage-ecosystem/cli-runs-get
- title: Downloading test artifacts
path: /docs/manage-ecosystem/ecosystem-cli-runs-download
+ - title: Deleting test run results
+ path: /docs/manage-ecosystem/cli-runs-delete
- title: Upgrading
path: /docs/upgrading
- title: Managers
diff --git a/src/markdown-pages/docs/manage-ecosystem/runs-delete.md b/src/markdown-pages/docs/manage-ecosystem/runs-delete.md
new file mode 100644
index 00000000..284987e7
--- /dev/null
+++ b/src/markdown-pages/docs/manage-ecosystem/runs-delete.md
@@ -0,0 +1,28 @@
+---
+path: "/docs/manage-ecosystem/cli-runs-delete"
+title: "Deleting test run results"
+---
+
+Over time, test run results build up and take up space in the Galasa Ecosystem. You can delete test runs which have completed in the past by using the `galasactl runs delete` command.
+
+You can view the full command syntax in the Galasa cli repository.
+
+## Working with the `galasactl runs delete` command
+
+The following example deletes a test run called _C1234_:
+
+```
+galasactl runs delete --name C1234 --bootstrap http://example.com:30960/bootstrap
+```
+
+## Identifying test runs to delete
+
+Use the `galasactl runs get` command to find the names of the test runs to delete. For example, use the `--age` option to specify a time period in which the tests ran.
+
+```
+galasactl runs get --age 6w:1w --bootstrap http://example.com:30960/bootstrap
+```
+
+The `--format raw` option is useful if you are writing a script to delete multiple test runs.
+
+You can view the full command syntax for `galasactl runs get` in the Galasa cli repository.