From c3c7d6858ad8a6be0aeaec3504bf26236547c700 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Thu, 19 Feb 2026 10:01:09 -0600 Subject: [PATCH] Increase GitHub fetch cache --- src/platforms/github.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platforms/github.ts b/src/platforms/github.ts index 8747080a..05be4f37 100644 --- a/src/platforms/github.ts +++ b/src/platforms/github.ts @@ -20,9 +20,9 @@ const fetchGitHub = async ( ) => { const data = await fetch( url, - // Cache all results for 2 minutes to avoid rate limiting + // Cache all results for 5 minutes to avoid rate limiting // GitHub API requests limited to 60 requests per hour - cacheRequest ? { next: { revalidate: 120 } } : undefined, + cacheRequest ? { next: { revalidate: 300 } } : undefined, ) .then(response => response.json()); if ((data.message ?? '').includes(GITHUB_API_ERROR)) {