Skip to content

Commit f89d6f3

Browse files
author
Andrew Mikofalvy
authored
Create stale.yml
1 parent 08a49f8 commit f89d6f3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Diff for: .github/workflows/stale.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Prune stale PRs"
2+
on:
3+
schedule:
4+
- cron: "25 9 * * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v3
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
stale-pr-message: 'This PR 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

0 commit comments

Comments
 (0)