Skip to content

Commit ef44a0f

Browse files
committed
Add stale issues workflow
1 parent 390fdb3 commit ef44a0f

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/stale.yml

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: '0 0 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v9
11+
with:
12+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs.'
13+
close-issue-message: 'This issue was closed because it has been stale for 14 days with no activity.'
14+
days-before-issue-stale: 14
15+
days-before-issue-close: 14
16+
stale-issue-label: 'stale'
17+
exempt-issue-labels: 'pinned'
18+
days-before-pr-stale: -1
19+
days-before-pr-close: -1

0 commit comments

Comments
 (0)