diff options
| author | Bozhidar Batsov <bozhidar@batsov.dev> | 2025-01-18 11:07:50 +0200 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.dev> | 2025-01-18 11:07:50 +0200 |
| commit | 48c648df4ac6addb06d6a3b4180cf8dd5f3478f1 (patch) | |
| tree | 05a3e0c5303dd79fe586848e4b63435a88d906f5 /.github/workflows | |
| parent | 18965274f39ef54bcdb2c562e79e764eb7812c1f (diff) | |
Fix exempt labels for the action/stale
Turned out those were supposed to be a string.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/stale.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index cf44e1a..05e690f 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 |
