diff --git a/content/en/tests/flaky_management/_index.md b/content/en/tests/flaky_management/_index.md
index 13a6ea029c156..1dbcaaf8cb9b8 100644
--- a/content/en/tests/flaky_management/_index.md
+++ b/content/en/tests/flaky_management/_index.md
@@ -38,6 +38,23 @@ Use the status drop-down to change how a flaky test is handled in your CI pipeli
Note: Status actions have minimum version requirements for each programming language's instrumentation library. See
Compatibility for details.
+## Configure policies to automate the flaky test lifecycle
+
+Configure automated Flaky Tests Policies to govern how flaky tests are handled in each repository. For example, a test that flakes in the default branch can automatically be quarantined, and later disabled if it remains unfixed after 30 days.
+
+1. Click the **Policies** button at the upper right of the Flaky Management page. You can also navigate to [**Flaky Tests Policies**][11] in Software Delivery settings.
+2. Search for and select the repository you want to configure. This opens the **Edit Policies** flyout.
+ {{< img src="tests/flaky-policies.png" alt="Flaky Tests Policies page with the Edit Policies flyout open to configure a policy" style="width:100%;" >}}
+
+3. Use the toggles to enable specific automated actions, and use automation rules to further customize how tests get quarantined, disabled, or retried:
+
+| Action | Description |
+| ---- | ---- |
+| **Quarantine** | Toggle to allow flaky tests to be quarantined for this repository. Customize automation rules based on: Time: Quarantine a test if its status is `Active` for a specified number of days. Branch: Quarantine an `Active` test if it flakes in one or more specified branches.|
+| **Disable** | Toggle to allow flaky tests to be disabled for this repository. You may want to do this after quarantining or to protect specific branches from flakiness. Customize automation rules based on: Status and time: Disable a test if it has a specified status for a specified number of days. Branch: Disable an `Active` or `Quarantined` test if it flakes in one or more specified branches. |
+| **Attempt to Fix** | When you attempt to fix a flaky test, automatically retry the test a specified number of times on the commit containing the fix. |
+| **Fixed** | If a flaky test no longer flakes for 30 days, it is automatically moved to Fixed status. This automation is default behavior and can't be customized. |
+
## Track evolution of flaky tests
Track the evolution of the number of flaky tests with the `test_optimization.test_management.flaky_tests` out-of-the-box metric. The metric is enriched with the tags below to help you investigate the counts in more detail.
@@ -126,3 +143,4 @@ To use Flaky Test Management features, you must use Datadog's native instrumenta
[8]: /tests/setup/javascript/
[9]: /tests/setup/python/
[10]: /tests/setup/ruby/
+[11]: https://app.datadoghq.com/ci/settings/test-optimization/flaky-test-management
diff --git a/static/images/tests/flaky-policies.png b/static/images/tests/flaky-policies.png
new file mode 100644
index 0000000000000..43496a1a37c67
Binary files /dev/null and b/static/images/tests/flaky-policies.png differ