Skip to content

Commit 34f2159

Browse files
committed
Add stale issues Github Actions Workflow
1 parent f579adc commit 34f2159

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Close Stale Issues
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *' # Runs daily at midnight UTC
6+
workflow_dispatch:
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Close stale issues
13+
uses: actions/stale@v8
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: 'This issue has been automatically closed due to inactivity. If you still need help, please reopen the issue and provide the requested information.'
17+
days-before-stale: 7
18+
days-before-close: 7
19+
only-labels: 'status:needs-more-info'
20+
exempt-issue-labels: 'status:do-not-close'
21+

0 commit comments

Comments
 (0)