Skip to content

Commit 7ad4a4e

Browse files
committed
chore: add stale action
1 parent f0d3082 commit 7ad4a4e

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Close stale issues and PRs'
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@v8
12+
with:
13+
days-before-stale: 30
14+
operations-per-run: 1000
15+
stale-issue-label: 'stale'
16+
stale-issue-message: ''
17+
stale-pr-message: ''

0 commit comments

Comments
 (0)