Skip to content

Commit 2a6a51e

Browse files
authored
close stale PRs and issues on a cadence (#323)
1 parent c846c1a commit 2a6a51e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/nightly.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: maintenance
2+
3+
on:
4+
schedule:
5+
- cron: "0 9 * * 1" # 9 am on Monday
6+
7+
jobs:
8+
clean-up:
9+
runs-on: ubuntu-22.04
10+
11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
15+
steps:
16+
- uses: actions/stale@v9.0.0
17+
with:
18+
days-before-stale: '120'

0 commit comments

Comments
 (0)