From 0edfdf0bf1d9e056276f90ec9ef5ef78b623b2ba Mon Sep 17 00:00:00 2001 From: Nikolay Borisenko <22616990+nvborisenko@users.noreply.github.com> Date: Mon, 10 Feb 2025 00:31:30 +0300 Subject: [PATCH 1/2] [ci] Do not stale issues/prs assigned to any milestone --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 82150e43bc059..95ac5965518c1 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -23,6 +23,7 @@ jobs: stale-issue-label: 'I-stale' days-before-stale: 180 days-before-close: 14 + exempt-milestones: '*' - uses: actions/stale@v9 with: close-issue-message: 'This issue was closed because we did not receive any additional information after 14 days.' From 3b5f4e66c17df0deadf9cc8741712781ab920cc9 Mon Sep 17 00:00:00 2001 From: Viet Nguyen Duc Date: Mon, 10 Feb 2025 11:11:16 +0700 Subject: [PATCH 2/2] Use config exempt-all-milestones Signed-off-by: Viet Nguyen Duc --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 95ac5965518c1..a371ce56649a8 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -23,7 +23,7 @@ jobs: stale-issue-label: 'I-stale' days-before-stale: 180 days-before-close: 14 - exempt-milestones: '*' + exempt-all-milestones: true - uses: actions/stale@v9 with: close-issue-message: 'This issue was closed because we did not receive any additional information after 14 days.'