From d365099e995b41c3f9039ae44e8f1fab7b8d67b0 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Tue, 17 Feb 2026 21:18:37 -0500 Subject: [PATCH] Fix stale bot cache issue by adding actions:write permission The stale workflow was experiencing a caching issue where issues were being perpetually skipped with the message "skipped due being processed during the previous run". This was caused by the workflow lacking the actions:write permission needed to delete/update the cache between runs. Without this permission, the stale action creates a cache of processed issues but cannot delete or update it in subsequent runs, resulting in a 403 error and issues getting stuck in a "perpetually processing" state. This fix adds the actions:write permission as recommended in: https://github.com/actions/stale/issues/1131 Signed-off-by: Tom Pantelis --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 3cf732af..f6b8193b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -15,6 +15,7 @@ jobs: permissions: issues: write pull-requests: write + actions: write steps: - uses: actions/stale@997185467fa4f803885201cee163a9f38240193d with: