Skip to content

Commit 5f8b17c

Browse files
committed
Fix exempt labels for the action/stale
Turned out those were supposed to be a string.
1 parent ead9a0d commit 5f8b17c

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/stale.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ jobs:
1515
days-before-issue-stale: 30
1616
days-before-issue-close: 30
1717
stale-issue-label: "stale"
18-
exempt-issue-labels:
19-
- "high priority"
20-
- "good first issue"
21-
- "pinned"
18+
exempt-issue-labels: "high priority, good first issue, pinned"
2219
stale-issue-message: >-
2320
This issue has been automatically marked as stale because it has not
2421
had any recent activity. It will be closed soon if no further
@@ -28,10 +25,7 @@ jobs:
2825
if you ever come back to it.
2926
days-before-pr-stale: 30
3027
days-before-pr-close: 30
31-
exempt-pr-labels:
32-
- "high priority"
33-
- "good first issue"
34-
- "pinned"
28+
exempt-pr-labels: "high priority, good first issue, pinned"
3529
stale-pr-message: >-
3630
This pull request has been automatically marked as stale because it has not
3731
had any recent activity. It will be closed soon if no further

0 commit comments

Comments
 (0)