From 9160320edf1f547f66fcdd4bc7fddda4292e8cd3 Mon Sep 17 00:00:00 2001 From: rae sharp <8883519+tr0njavolta@users.noreply.github.com> Date: Tue, 20 Jan 2026 17:29:31 -0500 Subject: [PATCH] Reduce freshness period from 180 to 90 days Signed-off-by: rae sharp <8883519+tr0njavolta@users.noreply.github.com> --- .github/workflows/check_freshness.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_freshness.yaml b/.github/workflows/check_freshness.yaml index 760ad3ee..fe283ed4 100644 --- a/.github/workflows/check_freshness.yaml +++ b/.github/workflows/check_freshness.yaml @@ -25,7 +25,7 @@ jobs: import subprocess from datetime import datetime, timedelta - FRESHNESS_PERIOD = timedelta(days=180) + FRESHNESS_PERIOD = timedelta(days=90) IGNORED_FILES = ["_index.md", "support.md"] now = datetime.now()