Skip to content

Commit 6eb6820

Browse files
authored
Create stale_issues.yml
1 parent 5b1aa23 commit 6eb6820

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/stale_issues.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 'Stale issue handler'
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '00 00 * * *'
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@main
12+
id: stale
13+
with:
14+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise it will be automatically closed in 5 days'
15+
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise it will be automatically closed in 5 days'
16+
days-before-stale: 30
17+
days-before-close: 5
18+
operations-per-run: 1500
19+
exempt-issue-labels: 'feature_request'
20+
exempt-pr-labels: 'feature_request'
21+
enable-statistics: 'true'
22+
close-issue-label: 'closed_for_stale'
23+
close-pr-label: 'closed_for_stale'

0 commit comments

Comments
 (0)