From 86c8c0fa4036cc95d90c0fb3e102dbfbecaab7d3 Mon Sep 17 00:00:00 2001 From: Kelly Mears Date: Thu, 11 May 2023 00:40:01 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20internal:=20actions/stale?= =?UTF-8?q?=20(#2252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Keep issues/prs open if they are assigned - Keep issues open if labeled: `in-progress` or `planned` ## Type of change **NONE: internal change** --- .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 284d604cfb..b83ede564d 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,9 +7,11 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v7 + - uses: actions/stale@v8 with: exempt-all-pr-milestones: true + exempt-issue-labels: in-progress, planned + exempt-all-assignees: true stale-issue-message: Message to comment on stale issues. If none provided, will not mark issues stale stale-issue-label: stale stale-pr-message: Message to comment on stale PRs. If none provided, will not mark PRs stale