From a4100f73eccee9bafa26cd9f2380d68275de1a25 Mon Sep 17 00:00:00 2001 From: Shivam Mishra <124146945+shmishra99@users.noreply.github.com> Date: Fri, 12 Sep 2025 18:44:00 +0530 Subject: [PATCH] stale bot : remove labels on issue update This rule automatically removes the status:stale and status:awaiting user response labels from an issue whenever a new comment or update is made. --- .github/workflows/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index a78b673f193..5fdcb436f99 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -22,10 +22,12 @@ jobs: stale-issue-label: "status:stale" close-issue-reason: not_planned any-of-labels: "status:awaiting user response" + remove-stale-when-updated: true + labels-to-remove-when-unstale: 'status:awaiting user response,status:stale' stale-issue-message: > This issue has been marked as stale because it has been open for 7 days with no activity. It will be closed in 2 days if no further activity occurs. close-issue-message: > This issue was closed because it has been inactive for 9 days. Please post a new issue if you need further assistance. Thanks! # Label that can be assigned to issues to exclude them from being marked as stale - exempt-issue-labels: 'override-stale' \ No newline at end of file + exempt-issue-labels: 'override-stale'