Skip to content

Commit da07047

Browse files
committed
chore: add stale.yml [skip ci]
1 parent 73bd29a commit da07047

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Close stale issues'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
workflow_dispatch:
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@v9
12+
with:
13+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
14+
days-before-stale: 30
15+
days-before-close: 7
16+
exempt-issue-labels: 'bug,enhancement,announcement,help wanted,good first issue,waiting for interest,needs response'
17+
# Disable marking PRs as stale
18+
days-before-pr-stale: -1

0 commit comments

Comments
 (0)