From 172f789590902e495fce90a38973a9ca6a6d4aec Mon Sep 17 00:00:00 2001 From: Rahul Sharma Date: Wed, 25 Feb 2026 10:10:47 -0800 Subject: [PATCH] stop labeling PRs as stale and allow stale cache to be deleted Signed-off-by: Rahul Sharma --- .github/workflows/stale.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 57cc44e2..afdef221 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -1,4 +1,4 @@ -name: Stale issues and pull requests +name: Stale issues on: schedule: @@ -7,23 +7,18 @@ on: jobs: stale: permissions: + actions: write issues: write - pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/stale@v10 with: stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. This issue will be closed in 30 days unless new comments are made or the stale label is removed. To skip these checks, apply the "lifecycle/frozen" label.' - stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. This PR will be closed in 30 days unless new comments are made or the stale label is removed. To skip these checks, apply the "lifecycle/frozen" label.' stale-issue-label: 'lifecycle/stale' - stale-pr-label: 'lifecycle/stale' - exempt-issue-labels: 'lifecycle/frozen' - exempt-pr-labels: 'lifecycle/frozen' + exempt-issue-labels: 'lifecycle/frozen,feature,enhancement' days-before-stale: 90 close-issue-message: 'This issue was automatically closed due to inactivity.' - close-pr-message: 'This pull request was automatically closed due to inactivity.' days-before-issue-close: 30 - days-before-pr-close: 30 remove-stale-when-updated: true operations-per-run: 300