From 3b1c29c866c74d3168c09a6966afa8166327482a Mon Sep 17 00:00:00 2001 From: Kevin Adler Date: Tue, 6 Oct 2020 00:22:47 -0500 Subject: [PATCH] fix: Make exempt labels plural for stale action These labels are plural since v2 to support multiple exempt labels, but this broke the current setup as the old singular exempt options are no longer accepted. --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index b3030f2..8ec1588 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -16,9 +16,9 @@ jobs: stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.' stale-pr-message: ':wave: Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.' stale-issue-label: 'stale' - exempt-issue-label: 'keep-open' - exempt-pr-label: 'keep-open' stale-pr-label: 'stale' + exempt-issue-labels: 'keep-open' + exempt-pr-labels: 'keep-open' days-before-stale: 30 days-before-close: 7 remove-stale-when-updated: true