Skip to content

Commit 80d9322

Browse files
committed
ci: add stale bot
1 parent fe77fef commit 80d9322

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/stale.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Close stale issues and PRs"
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
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+
days-before-stale: 60
14+
days-before-close: 7
15+
stale-issue-message: >
16+
This issue has been automatically marked as stale because it has not had
17+
recent activity in the past 60 days. It will be closed within 7 days if no further activity occurs. If the issue persists please comment here to bump your issue.
18+
Thank You - React Dropzone Maintaners
19+
stale-pr-message: >
20+
This PR has been automatically marked as stale because it has not had
21+
recent activity in the past 60 days. It will be closed within 7 days if no further activity occurs. If the issue persists please comment here to bump your issue.
22+
Thank You - React Dropzone Maintaners
23+
stale-issue-label: stale
24+
stale-pr-label: stale

0 commit comments

Comments
 (0)