From 5b8f36015acbf4649b3c3c35af08a52a40d2073b Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sat, 18 Jan 2025 11:09:06 +0200 Subject: [PATCH] Fix exempt labels for the action/stale Turned out those were supposed to be a string. --- .github/workflows/stale.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index cf44e1a637..05e690f47b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -15,10 +15,7 @@ jobs: days-before-issue-stale: 30 days-before-issue-close: 30 stale-issue-label: "stale" - exempt-issue-labels: - - "high priority" - - "good first issue" - - "pinned" + exempt-issue-labels: "high priority, good first issue, pinned" stale-issue-message: >- This issue has been automatically marked as stale because it has not had any recent activity. It will be closed soon if no further @@ -28,10 +25,7 @@ jobs: if you ever come back to it. days-before-pr-stale: 30 days-before-pr-close: 30 - exempt-pr-labels: - - "high priority" - - "good first issue" - - "pinned" + exempt-pr-labels: "high priority, good first issue, pinned" stale-pr-message: >- This pull request has been automatically marked as stale because it has not had any recent activity. It will be closed soon if no further