-
Notifications
You must be signed in to change notification settings - Fork 169
30 lines (28 loc) · 970 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
name: close stale issues and PRs
on:
schedule:
- cron: "0 0 * * *" # run every day
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |
This issue has been automatically marked as stale because it has
not had recent activity.
close-issue-message: |
This issue is being automatically closed due to inactivity.
days-before-stale: 90
days-before-close: 7
stale-pr-message: |
This pull request has been automatically marked as
stale because it has not had recent activity.
close-pr-message: |
This pull request is being automatically closed
due to inactivity.
stale-label: "stale"
exempt-issue-labels: "investigating,todo,wip"
exempt-pr-labels: "investigating,todo,wip"