From 57dc6b4c129fb0e08dcd15d4da4771bd7465e9bb Mon Sep 17 00:00:00 2001 From: Giannis Vrentzos Date: Tue, 23 Jun 2026 12:03:24 +0300 Subject: [PATCH] chore: tune stale PR workflow (14-day threshold, exempt drafts) --- .github/workflows/stale.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 42513e5..e893ba1 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,14 +13,15 @@ jobs: steps: - name: Check for stale PRs - uses: actions/stale@v10 + uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: -1 # Disables stale check for issues days-before-issue-close: -1 # Disables closing for issues - days-before-pr-stale: 7 + days-before-pr-stale: 14 days-before-pr-close: 7 + exempt-draft-pr: true stale-pr-label: 'stale' stale-pr-message: > - This PR looks inactive. It will be closed in 7 days if - there are no further updates. + This PR has had no activity for 14 days and is being marked stale. + It will be closed in 7 days if there are no further updates.