File tree Expand file tree Collapse file tree 2 files changed +30
-17
lines changed
Expand file tree Collapse file tree 2 files changed +30
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : ' Close stale issues'
2+ on :
3+ schedule :
4+ - cron : ' 0 0 * * *' # Run daily at midnight
5+
6+ jobs :
7+ stale :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/stale@v9
11+ with :
12+ days-before-stale : 20
13+ days-before-close : 5
14+ exempt-issue-labels : ' release,wait-for-release'
15+ stale-issue-label : ' wontfix'
16+ stale-issue-message : >
17+ This issue has been automatically marked as stale because it has not had
18+ recent activity. It will be closed if no further activity occurs. Thank you
19+ for your contributions.
20+ close-issue-message : ' ' # No close message as per your config
21+ # Using the same settings for PRs as issues
22+ days-before-pr-stale : 20
23+ days-before-pr-close : 5
24+ exempt-pr-labels : ' release,wait-for-release'
25+ stale-pr-label : ' wontfix'
26+ stale-pr-message : >
27+ This pull request has been automatically marked as stale because it has not had
28+ recent activity. It will be closed if no further activity occurs. Thank you
29+ for your contributions.
30+ close-pr-message : ' '
You can’t perform that action at this time.
0 commit comments