Skip to content

Commit f8d2e6f

Browse files
authored
Create close stale issues action (#565)
1 parent 80b34f3 commit f8d2e6f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Close stale issues'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
permissions:
6+
issues: write
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/stale@v4
13+
with:
14+
stale-issue-message: 'There has not been any recent activity on this ticket, so we are marking it as stale. If we do not hear anything further from you, this issue will be automatically closed in one week.'
15+
days-before-issue-stale: 7
16+
days-before-pr-stale: -1
17+
days-before-close: 7
18+
close-issue-message: 'There has not been any recent activity on this ticket, so we are closing it. Thanks for reaching out and please feel free to file a new issue if you have further questions.'
19+
only-issue-labels: 'waiting-for-reporter'

0 commit comments

Comments
 (0)