Skip to content

Commit 99f6060

Browse files
committedJul 12, 2024·
ci: add stale action
1 parent 67df705 commit 99f6060

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎.github/workflows/stale.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Close stale issues'
2+
3+
on:
4+
schedule:
5+
- cron: '30 1 * * *'
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@v9
12+
with:
13+
exempt-issue-labels: pending
14+
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
15+
close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity.'
16+
days-before-stale: 60
17+
days-before-close: 30
18+
days-before-pr-stale: -1

0 commit comments

Comments
 (0)
Please sign in to comment.