From 2911449bab33757c10bb32096bd76b946315a988 Mon Sep 17 00:00:00 2001 From: Damien Mathieu <42@dmathieu.com> Date: Tue, 4 Mar 2025 08:29:52 +0100 Subject: [PATCH] Look at stale issues in ascending order (#6396) This tool has been ignoring the most stale of our issues, seemingly because it's looking at the most recent ones first, and pagination makes it not look at the oldest. --- .github/workflows/close-stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/close-stale.yml b/.github/workflows/close-stale.yml index a75644a7b49..306870ae42d 100644 --- a/.github/workflows/close-stale.yml +++ b/.github/workflows/close-stale.yml @@ -23,3 +23,4 @@ jobs: days-before-issue-close: 744 exempt-issue-labels: 'never stale' exempt-pr-labels: 'never stale' + ascending: true