From 40a526b27ff15291d6ae4a4e5c199ef292210a89 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 9 Feb 2022 05:41:05 -0800 Subject: [PATCH] Stale-bot: Do not mark issues stale when pending maintainer action (#5156) Only adds stale with labels 'answered,needs info' in issues and 'needs update' in PRs Signed-off-by: Yong Tang --- .github/workflows/stale.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1e38b0c6c..7a00cc7a9 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -15,3 +15,6 @@ jobs: days-before-close: 7 exempt-issue-labels: 'enhancement' exempt-all-milestones: true + labels-to-remove-when-unstale: 'answered,needs info,needs update' + any-of-issue-labels: 'answered,needs info' + any-of-pr-labels: 'needs update'