From ee207f8ebf154d41d639bec2a5270c733cabaaa2 Mon Sep 17 00:00:00 2001 From: Dominic Evans Date: Mon, 17 Jul 2023 19:16:02 +0100 Subject: [PATCH] chore(ci): fix stale action params Exempt param should be pluralised: - https://github.com/actions/stale#exempt-issue-labels - https://github.com/actions/stale#exempt-pr-labels Signed-off-by: Dominic Evans --- .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 3b49724a0..8452c344f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -31,6 +31,6 @@ jobs: branch has no conflicts with main and rebase if needed. If you are awaiting a (re-)review then please let us know. stale-issue-label: "stale" - exempt-issue-label: "stale/exempt,pinned" + exempt-issue-labels: "stale/exempt,pinned" stale-pr-label: "stale" - exempt-pr-label: "stale/exempt,pinned" + exempt-pr-labels: "stale/exempt,pinned"