Skip to content

Commit ee59a57

Browse files
committed
Adding configuration for stale issues.
[skip ci]
1 parent 67444b8 commit ee59a57

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/stale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Configuration for Stale - https://github.com/actions/stale
2+
name: 'Close stale issues'
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '15 10,20 * * *'
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/stale@v4
13+
with:
14+
stale-issue-message: 'This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
15+
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
16+
stale-issue-label: 'I-stale'
17+
exempt-issue-labels: 'help wanted'
18+
days-before-stale: 365
19+
days-before-close: 14

0 commit comments

Comments
 (0)