From 1ec19d019c1f94822a7aaa19697b58cef080901d Mon Sep 17 00:00:00 2001 From: Wenjie Du Date: Mon, 28 Oct 2024 10:53:27 +0800 Subject: [PATCH] feat: exempt PRs with specific labels from staling; --- .github/workflows/stale.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 75372c89..8aadbf6f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,11 +9,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v8 + - uses: actions/stale@v9 with: stale-issue-message: 'This issue had no activity for **14 days**. It will be closed in **1 week** unless there is some new activity. Is this issue already resolved?' stale-issue-label: 'stale' - exempt-issue-labels: bug, enhancement, new feature, new model, good first issue, keep + exempt-issue-labels: bug, enhancement, new feature, new algo, good first issue, keep + exempt-pr-labels: bug, enhancement, new feature, new algo, keep stale-pr-message: 'This pull request had no activity for **14 days**. It will be closed in **1 week** unless there is some new activity.' stale-pr-label: 'stale' days-before-stale: 14