-
Notifications
You must be signed in to change notification settings - Fork 176
20 lines (20 loc) · 872 Bytes
/
stale.yml
File metadata and controls
20 lines (20 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Close stale issues and PRs
on:
schedule:
- cron: "0 0 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale-bot:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9.0.0
with:
days-before-close: 30
stale-issue-message: "This issue has had no activity for 60 days and will be marked stale. If there is no further activity, it will be closed in 30 days."
stale-pr-message: "This pull request has had no activity for 60 days and will be marked stale. If there is no further activity, it will be closed in 30 days."
close-issue-message: "This issue has had no activity for 90 days and will now be closed."
close-pr-message: "This pull request has had no activity for 90 days and will now be closed."
exempt-draft-pr: true
exempt-issue-labels: long-term