Skip to content

Commit f51fbe3

Browse files
authored
reactivated stale.yaml as github action (#3577)
The old `stale.yaml` seems not to work anymore, so I set up the same content in a new github workflow. I think we should use it again to get rid of old issues.
1 parent f91340c commit f51fbe3

File tree

3 files changed

+22
-19
lines changed

3 files changed

+22
-19
lines changed

.github/stale.yaml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/stale.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Close stale issues and PRs"
2+
3+
on:
4+
schedule:
5+
- cron: "30 1 * * 6" # every Saturday at 1:30
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
stale:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/stale@v9
15+
with:
16+
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
17+
days-before-issue-stale: 60
18+
days-before-issue-close: 7
19+
stale-issue-label: "wontfix"
20+
exempt-issue-labels: "pinned,security,under investigation,pr welcome"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ _This release is scheduled to be released on 2025-01-01._
1717

1818
### Updated
1919

20+
- [repo] reactivated `stale.yaml` as github action to mark issues as stale after 60 days and close them 7 days later (if no activity)
21+
2022
### Fixed
2123

2224
- [updatenotification] Fix pm2 using detection when pm2 script is in MagicMirror root folder (#3576)

0 commit comments

Comments
 (0)