Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit fc16cbe

Browse files
committed
Add stale.yml config
1 parent ba8e6b2 commit fc16cbe

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/stale.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Bump/Close inactive PRs
2+
on:
3+
schedule:
4+
- cron: "0 5 * * *"
5+
6+
jobs:
7+
close-issues:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
steps:
13+
- uses: actions/stale@v5
14+
with:
15+
days-before-pr-stale: 30
16+
days-before-pr-close: 90
17+
18+
stale-pr-label: "stale"
19+
stale-pr-message: "This PR is open and inactive for 30 days. Merging PRs open after a long time is error-prone. Please proceed to merging or make a comment to keep it open. You can also prevent PRs from being tagged stale or closed with 'keep-open' tag. If there is no activity in 90 days, this PR will be closed"
20+
close-pr-message: "This PR was closed because it has been inactive for 90 days since being marked as stale."
21+
22+
exempt-pr-labels: "keep-open,dependabot,dependencies"
23+
24+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)