branch: elpa/projectile
commit 48c648df4ac6addb06d6a3b4180cf8dd5f3478f1
Author: Bozhidar Batsov <bozhi...@batsov.dev>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    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

Reply via email to