diff --git a/examples/Detect-Secrets.md b/examples/Detect-Secrets.md
new file mode 100644
index 0000000000000000000000000000000000000000..0ad75c9101f0049c2f88a5fbe957db31758dbe31
--- /dev/null
+++ b/examples/Detect-Secrets.md
@@ -0,0 +1,15 @@
+# Secrets detection example
+## Detects secrets in the current project
+
+- One 'analysis' stage with one job
+  
+``` yml
+stages:
+  - analysis 
+variables:
+  stage: analysis
+  tags:
+    - docker
+  script:
+    - docker run --rm -v "${PWD}:/work" -w /work its-registry.unl.edu/unl-its/docker-ci/detect-secrets -s
+```