From c7b7f583e53cf35b3e702c1019134b31be337bd9 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 2 Nov 2022 12:27:47 +0000 Subject: [PATCH] chore: fix exempt issue labels for stale bot Version 2 of actions/stale changed the option for exempt issue labels from the singular `exempt-issue-label` to the plural `exempt-issue-labels`. Refs: https://github.com/actions/stale/pull/19 Refs: https://github.com/nodejs/build/pull/2704 --- .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 d41c23d..e305f0f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,6 +12,6 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open many days with no activity. It will be closed soon unless the stale label is removed or a comment is made.' stale-issue-label: 'stale' - exempt-issue-label: 'never stale' + exempt-issue-labels: 'never stale' days-before-stale: 90 days-before-close: 14